char is not "char" reeeeee

This commit is contained in:
jake 2023-02-18 16:20:26 -07:00 committed by andy
parent 2654496f8c
commit a28fdb43cd

View File

@ -1,11 +1,11 @@
create 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,
};
difficulty char not null
);
create table room_note (
room integer references room (id) not null,