drawpile / listserver

Public listing server for Drawpile sessions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Just creating this db

tincancrab opened this issue · comments

Been struggling with the guide forever. it wont let me import createdb.sql either

[liz@syntheticdreams listserver]$ psql listing < doc/createdb.sql NOTICE: CREATE TABLE will create implicit sequence "sessions_id_seq" for serial column "sessions.id" ERROR: type "boolea" does not exist LINE 19: private BOOLEA NOT NULL DEFAULT FALSE

Read the issue, Modified the sql file. No errors, so i'll be moving on to the next step.

current:
roomcode VARCHAR(16) DEFAULT NULL CONSTRAINT unique_roomcode UNIQUE, private BOOLEA NOT NULL DEFAULT FALSE );

fix:
roomcode VARCHAR(16) DEFAULT NULL CONSTRAINT unique_roomcode UNIQUE, private BOOLEAN NOT NULL DEFAULT FALSE );

Thanks for letting me know. I fixed the typo in the script.