1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-07-02 16:38:37 +00:00

Add created_at field for entries

This commit is contained in:
Ben Congdon 2020-11-29 17:04:18 -08:00 committed by GitHub
parent e17d395ae7
commit 49feb1958c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 15 additions and 4 deletions

View file

@ -0,0 +1,2 @@
alter table entries add column created_at timestamp with time zone not null default now();
update entries set created_at = published_at;