mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
4 lines
172 B
MySQL
4 lines
172 B
MySQL
|
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;
|