agriget/schema/versions/mysql/49.sql

6 lines
233 B
MySQL
Raw Permalink Normal View History

2019-03-22 22:17:29 +08:00
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;