mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-02-10 16:01:33 +00:00
rate-limit requests for favicons when not present to conserve traffic (refs #457)
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user