49.sql 244 B

123456789
  1. begin;
  2. alter table ttrss_counters_cache add column updated timestamp;
  3. update ttrss_counters_cache set updated = NOW();
  4. alter table ttrss_counters_cache alter column updated set not null;
  5. update ttrss_version set schema_version = 49;
  6. commit;