1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-01 17:09:14 +00:00

add support for http 304 not modified (no timestamp calculation bullshit like last time)

This commit is contained in:
Andrew Dolgov
2017-08-17 14:40:21 +03:00
parent edefcec19d
commit 153cb6d305
6 changed files with 96 additions and 22 deletions

View File

@@ -0,0 +1,10 @@
begin;
alter table ttrss_feeds add column last_modified text;
update ttrss_feeds set last_modified = '';
alter table ttrss_feeds alter column last_modified set not null;
alter table ttrss_feeds alter column last_modified set default '';
UPDATE ttrss_version SET schema_version = 132;
commit;