diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-04-22 21:35:02 +0200 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-04-22 21:35:02 +0200 |
commit | 1cf6504bbbaf946da792985a0bd7ada6ea85a281 (patch) | |
tree | 7821a5414486da322af9756b1405449849e4eecf /database | |
parent | bde4d5721e9e3d2d1749ac7e012206828c072d07 (diff) |
implement user secrets
Diffstat (limited to 'database')
-rw-r--r-- | database/init_db.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/database/init_db.sql b/database/init_db.sql index cd52e2e..0807b56 100644 --- a/database/init_db.sql +++ b/database/init_db.sql @@ -12,7 +12,7 @@ create table if not exists users ( verified_email boolean not null, type text not null, preferences text not null, - presence text + secret text not null ); create table if not exists games ( |