summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorsostler <sbostler@gmail.com>2010-03-26 15:41:42 -0400
committersostler <sbostler@gmail.com>2010-03-26 15:41:42 -0400
commitf9c1e7d2b828fe4dadfb031cb0c44d65d242e17a (patch)
tree7e7e0bf9c066bc8455e1534b1d689bd9bdd70403 /db
parentda30c6c48e646efd38e8042370664115b99d6b1e (diff)
Adding profile_bg field to schema
Diffstat (limited to 'db')
-rwxr-xr-xdb/0-create.psql3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/0-create.psql b/db/0-create.psql
index 00ea012..1316a36 100755
--- a/db/0-create.psql
+++ b/db/0-create.psql
@@ -9,7 +9,8 @@ CREATE TABLE users (
is_admin boolean NOT NULL DEFAULT false,
avatar text NOT NULL DEFAULT '',
contact text NOT NULL DEFAULT '',
- bio text NOT NULL DEFAULT ''
+ bio text NOT NULL DEFAULT '',
+ profile_bg text
);
CREATE TABLE rooms (