omnivore/packages/db/migrations/0009.do.article_published_at.sql

11 lines
193 B
MySQL
Raw Normal View History

2022-02-11 17:24:33 +00:00
-- Type: DO
-- Name: article_published_at
-- Description: Adds published_at column for the article table
BEGIN;
ALTER TABLE omnivore.article
ADD COLUMN published_at timestamptz;
COMMIT;