Files

9 lines
138 B
SQL
Raw Permalink Normal View History

2026-08-03 07:14:33 -05:00
-- +goose Up
ALTER TABLE feeds
ADD COLUMN last_fetched_at TIMESTAMP NULL;
-- +goose Down
ALTER TABLE feeds
DROP COLUMN last_fetched_at;