diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-02-09 21:23:17 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-02-09 21:23:17 +0100 |
commit | abe0a8a0684b71c263bde0cce72865cdc24e8f9d (patch) | |
tree | 94b0b70b28c81cc2d6b878098ec3de255d486639 /database | |
parent | 0b93ff1f38555291288955db01ac1c168a404acc (diff) |
added column for status
Diffstat (limited to 'database')
-rw-r--r-- | database/init_db.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/database/init_db.sql b/database/init_db.sql index 1bb36dd..33a6c04 100644 --- a/database/init_db.sql +++ b/database/init_db.sql @@ -4,6 +4,7 @@ create table if not exists users ( user_id text primary key not null, username varchar(35) not null, email text not null, + status text, country text, password_hash text not null, registered integer not null, |