summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-03-29 12:09:42 +0400
committerAndrew Dolgov <[email protected]>2011-03-29 12:16:09 +0400
commit74b046a1c9d10e5c937361c89c3ae790925b76d7 (patch)
tree6671d5252ff75b91bb653a594a9ca2d705794a00 /schema/ttrss_schema_mysql.sql
parent9382ca847f6a6be7458b07ed3accc9e4ddb6bd31 (diff)
add ttrss_feeds.update_on_checksum_change
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index ab27c1b75..46e08dea4 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -123,6 +123,7 @@ create table ttrss_feeds (id integer not null auto_increment primary key,
update_method integer not null default 0,
order_id integer not null default 0,
mark_unread_on_update boolean not null default false,
+ update_on_checksum_change boolean not null default false,
strip_images boolean not null default false,
index(owner_uid),
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
@@ -304,7 +305,6 @@ create table ttrss_prefs (pref_name varchar(250) not null primary key,
foreign key (section_id) references ttrss_prefs_sections(id)) TYPE=InnoDB DEFAULT CHARSET=UTF8;
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('PURGE_OLD_DAYS', 3, '60', 'Purge old posts after this number of days (0 - disables)',1);
-insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('UPDATE_POST_ON_CHECKSUM_CHANGE', 1, 'true', 'Update post on checksum change',1);
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('DEFAULT_UPDATE_INTERVAL', 3, '30', 'Default interval between feed updates',1);