summaryrefslogtreecommitdiff
path: root/schema/versions/pgsql/49.sql
blob: 6efd91925af598fdfb9464f0c85214f948fad9d0 (plain)
1
2
3
4
5
6
7
8
9
begin;

alter table ttrss_counters_cache add column updated timestamp;
update ttrss_counters_cache set updated = NOW();
alter table ttrss_counters_cache alter column updated set not null;

update ttrss_version set schema_version = 49;

commit;