From 153cb6d30510f9804fe596ac6777bc2f35111ae2 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 17 Aug 2017 14:40:21 +0300 Subject: add support for http 304 not modified (no timestamp calculation bullshit like last time) --- schema/ttrss_schema_pgsql.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'schema/ttrss_schema_pgsql.sql') 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, -- cgit v1.2.3