Files
boot-dev-blog-aggregator/sql/schema/0004_last_fetched_field_in_feed.sql
2025-03-11 15:25:52 +02:00

5 lines
144 B
SQL

-- +goose Up
ALTER TABLE feeds ADD COLUMN last_fetched_at timestamp DEFAULT null;
-- +goose Down
ALTER TABLE feeds DROP COLUMN last_fetched_at;