From a00a7d7191d3f85137a22827d6f95061354f6f71 Mon Sep 17 00:00:00 2001 From: jake Date: Sat, 18 Feb 2023 16:20:26 -0700 Subject: [PATCH] char is not "char" reeeeee --- src/entity/gateway/postgres/migrations/V0012__room.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/entity/gateway/postgres/migrations/V0012__room.sql b/src/entity/gateway/postgres/migrations/V0012__room.sql index 750493c..1064ea1 100644 --- a/src/entity/gateway/postgres/migrations/V0012__room.sql +++ b/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,