1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-21 19:01:28 +00:00

add fields for daily email digest to ttrss_users

This commit is contained in:
Andrew Dolgov
2006-08-20 11:54:53 +01:00
parent 9933172497
commit 32be4b10c3
4 changed files with 22 additions and 4 deletions

View File

@@ -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;