summaryrefslogtreecommitdiff
path: root/sql/sqlite3.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sqlite3.sql')
-rw-r--r--sql/sqlite3.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sqlite3.sql b/sql/sqlite3.sql
index ee9abc6..97ffcea 100644
--- a/sql/sqlite3.sql
+++ b/sql/sqlite3.sql
@@ -18,6 +18,7 @@ create table user(
id integer primary key autoincrement not null,
username varchar(32) unique not null,
password varchar(32) not null,
+ email varchar(32),
status char(1) references userstatus(status) default 'U',
registration_start timestamp,
code varchar(32)