mirror of
https://codeberg.org/pronounscc/pronouns.cc.git
synced 2025-02-12 23:03:37 +01:00
15 lines
254 B
MySQL
15 lines
254 B
MySQL
|
-- 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;
|