From 1aab73450987ebdaa813265b6911b4ce8134a788 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Tue, 3 Sep 2024 12:27:07 +0200 Subject: Add name and address fields for users --- schema/init.sql | 2 ++ 1 file changed, 2 insertions(+) (limited to 'schema/init.sql') 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) ); -- cgit v1.2.3-18-g5258