You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
346 B

  1. create table room (
  2. id serial primary key not null,
  3. name varchar(32) not null,
  4. section_id char not null,
  5. mode char not null,
  6. episode char not null,
  7. difficulty char not null
  8. );
  9. create table room_note (
  10. room integer references room (id) not null,
  11. note jsonb not null,
  12. created_at timestamptz default current_timestamp not null
  13. );