summaryrefslogtreecommitdiff
path: root/db/0-create.psql
diff options
context:
space:
mode:
Diffstat (limited to 'db/0-create.psql')
-rwxr-xr-xdb/0-create.psql5
1 files changed, 4 insertions, 1 deletions
diff --git a/db/0-create.psql b/db/0-create.psql
index af5ace6..ac0dac6 100755
--- a/db/0-create.psql
+++ b/db/0-create.psql
@@ -32,4 +32,7 @@ CREATE INDEX user_id_idx ON messages (user_id);
CREATE INDEX room_id_idx ON messages (room_id);
CREATE INDEX created_on_idx ON messages (created_on);
-INSERT INTO rooms (room_id, name) VALUES (1, 'dumpfm'); \ No newline at end of file
+INSERT INTO rooms (key, name, description, admin_only)
+ VALUES ('RoomA', 'Room A', 'Hangout', false);
+INSERT INTO rooms (key, name, description, admin_only)
+ VALUES ('VIP', 'The VIP Room', 'Command Post', true); \ No newline at end of file