Open source omnivore
This commit is contained in:
10
packages/db/migrations/0009.do.article_published_at.sql
Executable file
10
packages/db/migrations/0009.do.article_published_at.sql
Executable file
@ -0,0 +1,10 @@
|
||||
-- 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;
|
||||
Reference in New Issue
Block a user