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