diff options
Diffstat (limited to 'db/0-create.psql')
| -rwxr-xr-x | db/0-create.psql | 8 |
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); |
