summaryrefslogtreecommitdiff
path: root/db/0-create.psql
diff options
context:
space:
mode:
authoryo momma <shutup@oops.wtf>2026-02-03 22:05:50 +0000
committeryo momma <shutup@oops.wtf>2026-02-03 22:05:50 +0000
commita5e72f0fbdedf251e90334657856f07bca725be0 (patch)
tree2b71e48a1e07b0f4f0edcb8a154769b4069dbf98 /db/0-create.psql
parent36202d8defb26f87264914f60c39c768cff3729e (diff)
Hump.fm: update configs and scripts
Diffstat (limited to 'db/0-create.psql')
-rwxr-xr-xdb/0-create.psql8
1 files changed, 4 insertions, 4 deletions
diff --git a/db/0-create.psql b/db/0-create.psql
index 9a9b771..979eb68 100755
--- a/db/0-create.psql
+++ b/db/0-create.psql
@@ -1,8 +1,8 @@
--- dump.fm schema
+-- hump.fm schema
--
-- Run with:
--- createdb dumpfm
--- psql -d dumpfm -f db/0-create.psql
+-- createdb humpfm
+-- psql -d humpfm -f db/0-create.psql
CREATE TABLE users (
user_id SERIAL PRIMARY KEY,
@@ -106,7 +106,7 @@ CREATE TABLE mutes (
CREATE INDEX mutes_expires_idx ON mutes ((set_on + duration));
INSERT INTO rooms (key, name, description, admin_only)
- VALUES ('dumpfm', 'Room A', 'Hangout', false);
+ VALUES ('humpfm', 'Room A', 'Hangout', false);
INSERT INTO rooms (key, name, description, admin_only)
VALUES ('VIP', 'The VIP Room', 'Command Post', true);