summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-03 12:27:07 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-03 12:27:07 +0200
commit1aab73450987ebdaa813265b6911b4ce8134a788 (patch)
treef24789e456e369e8f3c5582f232ac74a40390c42 /schema
parent518eb39eb4c63d20a1ff71930e016937666e55e5 (diff)
Add name and address fields for users
Diffstat (limited to 'schema')
-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)
);