room notes, etc #139

Merged
jake merged 12 commits from more_itemnotes into master 2023-02-18 21:01:46 -05:00
Showing only changes of commit aa036ed5d7 - Show all commits

View File

@ -0,0 +1,17 @@
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
);