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