rss-reader/migrations/2023-10-22-115359_update_fe.../up.sql

7 lines
143 B
SQL

-- Your SQL goes here
ALTER TABLE feed_item
ADD COLUMN created_ts TIMESTAMP;
ALTER TABLE feed_item
ALTER COLUMN created_ts SET DEFAULT now();