summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.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_pgsql.sql
parent9382ca847f6a6be7458b07ed3accc9e4ddb6bd31 (diff)
add ttrss_feeds.update_on_checksum_change
Diffstat (limited to 'schema/ttrss_schema_pgsql.sql')
-rw-r--r--schema/ttrss_schema_pgsql.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index c7c51c5ae..8d87663d5 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -86,6 +86,7 @@ create table ttrss_feeds (id serial not null primary key,
always_display_enclosures boolean not null default false,
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,
auth_pass_encrypted boolean not null default false);
@@ -267,7 +268,6 @@ create table ttrss_prefs (pref_name varchar(250) not null primary key,
def_value text not null);
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);