summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-20 07:23:33 +0100
committerAndrew Dolgov <[email protected]>2005-12-20 07:23:33 +0100
commit8629e09d9b60eda1c4f06d88267287083f8f3ea2 (patch)
tree479f8fd7415d22fd0edf477b566352d80d5282bc /schema/ttrss_schema_mysql.sql
parentd2afdfa09f86ac4f73b82b88175a09e4a124ab42 (diff)
schema: add email column to ttrss_users
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 438d46054..3d3187d72 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -28,6 +28,7 @@ create table ttrss_users (id integer primary key not null auto_increment,
last_login datetime default null,
access_level integer not null default 0,
theme_id integer default null,
+ email varchar(250) not null default '',
index (theme_id),
foreign key (theme_id) references ttrss_themes(id)) TYPE=InnoDB;