mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-01-03 23:29:15 +00:00
implement proper last_marked/last_published feeds for proper sorting of
published and marked virtual feeds, remove sorting by last_read workaround api: add pubsubhubbub ping when article is being set published bump schema
This commit is contained in:
11
schema/versions/pgsql/105.sql
Normal file
11
schema/versions/pgsql/105.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
begin;
|
||||
|
||||
alter table ttrss_user_entries add column last_marked timestamp;
|
||||
alter table ttrss_user_entries add column last_published timestamp;
|
||||
|
||||
update ttrss_user_entries set last_published = last_read where published = true;
|
||||
update ttrss_user_entries set last_marked = last_read where marked = true;
|
||||
|
||||
update ttrss_version set schema_version = 105;
|
||||
|
||||
commit;
|
||||
Reference in New Issue
Block a user