1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 05:25:56 +00:00

add ttrss_feeds.last_unconditional (schema bump)

This commit is contained in:
Andrew Dolgov
2017-11-30 12:55:50 +03:00
parent 1a4ff852de
commit ecd2e414bd
5 changed files with 19 additions and 3 deletions

View File

@@ -72,6 +72,7 @@ create table ttrss_feeds (id serial not null primary key,
update_interval integer not null default 0,
purge_interval integer not null default 0,
last_updated timestamp default null,
last_unconditional timestamp default null,
last_error text not null default '',
last_modified text not null default '',
favicon_avg_color varchar(11) default null,
@@ -265,7 +266,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 (132);
insert into ttrss_version values (133);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,