summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-20 11:54:53 +0100
committerAndrew Dolgov <[email protected]>2006-08-20 11:54:53 +0100
commit32be4b10c33a31d0e44e2062c37bede01c994f22 (patch)
tree6dcb6225262dab2800246318e73b5da474ab6da5 /schema/ttrss_schema_mysql.sql
parent99331724972f9b810ae6a3f2f83ba948da794c45 (diff)
add fields for daily email digest to ttrss_users
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 7cc4cac03..74ad87cfe 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -33,6 +33,8 @@ create table ttrss_users (id integer primary key not null auto_increment,
access_level integer not null default 0,
theme_id integer default null,
email varchar(250) not null default '',
+ email_digest bool not null default false,
+ last_digest_sent datetime default null,
index (theme_id),
foreign key (theme_id) references ttrss_themes(id)) TYPE=InnoDB;