summaryrefslogtreecommitdiff
path: root/database/sql/schema_version_26.sql
blob: d091e611a378dcc965e91bf27ade26ce7e1bdac7 (plain) (blame)
1
2
3
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;