pronounsfu/scripts/migrate/022_notices.sql

15 lines
254 B
MySQL
Raw Normal View History

2023-09-09 08:20:18 -07:00
-- 2023-09-09: Add global notices
-- +migrate Up
create table notices (
id serial primary key,
notice text not null,
start_time timestamptz not null default now(),
end_time timestamptz not null
);
-- +migrate Down
drop table notices;