1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-06 17:41:00 +00:00
miniflux-v2/database/sql/schema_version_42.sql
2020-11-29 17:04:18 -08:00

2 lines
137 B
SQL

alter table entries add column created_at timestamp with time zone not null default now();
update entries set created_at = published_at;