diff options
Diffstat (limited to 'schema')
-rw-r--r-- | schema/init.sql | 2 |
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) ); |