jake aa036ed5d7
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
oh yeah I kinda need this migration
2023-02-18 18:06:40 -07:00

18 lines
394 B
SQL

drop table room_note;
drop table room;
create table room (
id serial primary key not null,
name varchar(32) not null,
section_id "char" not null,
mode "char" not null,
episode "char" not null,
difficulty "char" not null
);
create table room_note (
room integer references room (id) not null,
note jsonb not null,
created_at timestamptz default current_timestamp not null
);