summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-05-24 16:20:03 +0400
committerAndrew Dolgov <[email protected]>2012-05-24 16:20:03 +0400
commit382268c6c9f778e7b435ee69c56a9407d9e8dcc2 (patch)
tree8c1f1d2b169fc5b37de6fca768c3299d0a02eedb /schema/ttrss_schema_pgsql.sql
parent0e63fc49ab31db2ff61cae1b56c33431c9848c37 (diff)
rate-limit requests for favicons when not present to conserve traffic (refs #457)
Diffstat (limited to 'schema/ttrss_schema_pgsql.sql')
-rw-r--r--schema/ttrss_schema_pgsql.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index 2d3c963ca..35b5c440b 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -82,6 +82,7 @@ create table ttrss_feeds (id serial not null primary key,
update_on_checksum_change boolean not null default false,
strip_images boolean not null default false,
pubsub_state integer not null default 0,
+ favicon_last_checked timestamp default null,
auth_pass_encrypted boolean not null default false);
create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);
@@ -229,7 +230,7 @@ create index ttrss_tags_post_int_id_idx on ttrss_tags(post_int_id);
create table ttrss_version (schema_version int not null);
-insert into ttrss_version values (91);
+insert into ttrss_version values (92);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,