summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index 6439d5f..feb99a9 100644
--- a/schema.sql
+++ b/schema.sql
@@ -23,7 +23,8 @@ create table if not exists users (
user_id integer primary key,
name text unique collate nocase,
mail text unique collate nocase,
- notify boolean default 0,
+ notify integer default 0,
+ is_verified boolean default 0,
is_banned boolean default 0,
ctime datetime default current_timestamp,
password text,