mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-06 22:27:42 +02:00
6 lines
233 B
SQL
6 lines
233 B
SQL
alter table ttrss_counters_cache add column updated datetime;
|
|
update ttrss_counters_cache set updated = NOW();
|
|
alter table ttrss_counters_cache change updated updated datetime not null;
|
|
|
|
update ttrss_version set schema_version = 49;
|