mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
10 lines
193 B
PL/PgSQL
Executable file
10 lines
193 B
PL/PgSQL
Executable file
-- 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;
|