diff options
| author | Andrew Dolgov <noreply@madoka.volgo-balt.ru> | 2017-11-30 12:55:50 +0300 |
|---|---|---|
| committer | Andrew Dolgov <noreply@madoka.volgo-balt.ru> | 2017-11-30 12:55:50 +0300 |
| commit | ecd2e414bde6b44bffeea0e6ee49d2dc603f35cc (patch) | |
| tree | 53d451255dc83416afca8a63d2d22e3c3c15950d /schema/ttrss_schema_pgsql.sql | |
| parent | 1a4ff852def7f70d99a3ee330b405dd0ff3fe470 (diff) | |
add ttrss_feeds.last_unconditional (schema bump)
Diffstat (limited to 'schema/ttrss_schema_pgsql.sql')
| -rw-r--r-- | schema/ttrss_schema_pgsql.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index 7870b4b37..9f3975353 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -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, |