omnivore/packages/db/migrations/0018.undo.article_with_uploaded_file.sql

11 lines
186 B
MySQL
Raw Normal View History

2022-02-11 17:24:33 +00:00
-- 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;