We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9626ec9 + 2f66188 commit 0debe79Copy full SHA for 0debe79
server/db/schema/events.sql
@@ -0,0 +1,6 @@
1
+CREATE TABLE events (
2
+ id INT PRIMARY KEY UNIQUE NOT NULL DEFAULT nextval('event_id_seq'),
3
+ name VARCHAR(256) NOT NULL,
4
+ description VARCHAR(256),
5
+ archived BOOL NOT NULL DEFAULT False
6
+);
server/db/schema/rooms.sql
+CREATE TABLE rooms (
+ id INT PRIMARY KEY UNIQUE NOT NULL DEFAULT nextval('room_id_seq'),
+ rate NUMERIC NOT NULL
0 commit comments