summaryrefslogtreecommitdiff
path: root/schema/init.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/init.sql')
-rw-r--r--schema/init.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/schema/init.sql b/schema/init.sql
index 8950a5f..bdf25cf 100644
--- a/schema/init.sql
+++ b/schema/init.sql
@@ -2,6 +2,8 @@ CREATE TABLE users(
id SERIAL NOT NULL,
email text NOT NULL,
password text NOT NULL,
+ name text NULL,
+ address text NULL,
is_admin boolean default false,
PRIMARY KEY (id)
);