summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-08-17 14:40:21 +0300
committerAndrew Dolgov <[email protected]>2017-08-17 14:40:21 +0300
commit153cb6d30510f9804fe596ac6777bc2f35111ae2 (patch)
treedf718f30eaba687340a9b430fd488ebb973cd570 /schema/ttrss_schema_pgsql.sql
parentedefcec19d43c261c5bd5ee7382149581757058e (diff)
add support for http 304 not modified (no timestamp calculation bullshit like last time)
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 6db73cd51..7870b4b37 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -73,6 +73,7 @@ create table ttrss_feeds (id serial not null primary key,
purge_interval integer not null default 0,
last_updated timestamp default null,
last_error text not null default '',
+ last_modified text not null default '',
favicon_avg_color varchar(11) default null,
site_url varchar(250) not null default '',
auth_login varchar(250) not null default '',
@@ -264,7 +265,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 (131);
+insert into ttrss_version values (132);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,