summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2020-09-28 14:14:06 +0300
committerAndrew Dolgov <[email protected]>2020-09-28 14:14:06 +0300
commitde22464ea818b2e6094ce92d0432090d47936ea9 (patch)
tree23a3bc7e732902c1a84cf2fa81ecdaaf363e791c /schema/ttrss_schema_pgsql.sql
parent97d7e5a42a79fdd8fb54baf73a3d715385dccddf (diff)
schema: add ttrss_feeds.last_successful_update
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 c818596b8..f73933ba1 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -98,6 +98,7 @@ create table ttrss_feeds (id serial not null primary key,
cache_content boolean not null default false,
last_viewed timestamp default null,
last_update_started timestamp default null,
+ last_successful_update timestamp default null,
update_method integer not null default 0,
always_display_enclosures boolean not null default false,
order_id integer not null default 0,
@@ -278,7 +279,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 (139);
+insert into ttrss_version values (140);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,