Files
rss-reader/migrations/2023-10-22-115359_update_feed_item_date/up.sql
T

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();