mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
10 lines
221 B
PL/PgSQL
Executable file
10 lines
221 B
PL/PgSQL
Executable file
-- Type: DO
|
|
-- Name: article_with_uploaded_file
|
|
-- Description: article column pointing to uploaded file
|
|
|
|
BEGIN;
|
|
|
|
ALTER TABLE omnivore.article
|
|
ADD COLUMN upload_file_id uuid REFERENCES omnivore.upload_files;
|
|
|
|
COMMIT;
|