mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
History: show entries in the order in which they were read
Add a changed_at timestamp to the entries table. This field is updated whenever the entry's metadata changes.
This commit is contained in:
parent
dc4240e702
commit
2570c3410b
8 changed files with 50 additions and 14 deletions
3
database/sql/schema_version_26.sql
Normal file
3
database/sql/schema_version_26.sql
Normal file
|
@ -0,0 +1,3 @@
|
|||
alter table entries add column changed_at timestamp with time zone;
|
||||
update entries set changed_at = published_at;
|
||||
alter table entries alter column changed_at set not null;
|
Loading…
Add table
Add a link
Reference in a new issue