Browse Source

char is not "char" reeeeee

pull/139/head
jake 1 year ago
parent
commit
a00a7d7191
  1. 6
      src/entity/gateway/postgres/migrations/V0012__room.sql

6
src/entity/gateway/postgres/migrations/V0012__room.sql

@ -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,

Loading…
Cancel
Save