diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-05 11:25:29 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-05 11:25:29 +0200 |
commit | 7e9dbd60f55f02ab065c764f8230aabaa6778eed (patch) | |
tree | 53d41bb27dbc3cf6e3c17ae99742029ab554ce53 /schema | |
parent | 58ff30ec66b5fd94c98cd0dfe441d6968af35ff2 (diff) |
Keep a device token for the user notification
Diffstat (limited to 'schema')
-rw-r--r-- | schema/init.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/schema/init.sql b/schema/init.sql index 7c1c5b8..9a6abee 100644 --- a/schema/init.sql +++ b/schema/init.sql @@ -4,6 +4,7 @@ CREATE TABLE users( password text NOT NULL, name text NULL, address text NULL, + notification_token text NULL, is_admin boolean default false, PRIMARY KEY (id) ); |