summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.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_mysql.sql
parent0e63fc49ab31db2ff61cae1b56c33431c9848c37 (diff)
rate-limit requests for favicons when not present to conserve traffic (refs #457)
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index c75d00862..54f53e85f 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -119,6 +119,7 @@ create table ttrss_feeds (id integer not null auto_increment 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 datetime default null,
index(owner_uid),
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
index(cat_id),
@@ -260,7 +261,7 @@ create table ttrss_tags (id integer primary key auto_increment,
create table ttrss_version (schema_version int not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
-insert into ttrss_version values (91);
+insert into ttrss_version values (92);
create table ttrss_enclosures (id integer primary key auto_increment,
content_url text not null,