summaryrefslogtreecommitdiff
path: root/db/0-create.psql
diff options
context:
space:
mode:
Diffstat (limited to 'db/0-create.psql')
-rwxr-xr-xdb/0-create.psql4
1 files changed, 3 insertions, 1 deletions
diff --git a/db/0-create.psql b/db/0-create.psql
index d34ccdd..35278c7 100755
--- a/db/0-create.psql
+++ b/db/0-create.psql
@@ -3,7 +3,9 @@ CREATE TABLE users (
nick text UNIQUE NOT NULL,
hash text NOT NULL,
email text NOT NULL,
- created_on timestamp NOT NULL DEFAULT now()
+ created_on timestamp NOT NULL DEFAULT now(),
+ contact text,
+ bio text
);
CREATE TABLE rooms (