mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
11 lines
186 B
MySQL
11 lines
186 B
MySQL
|
|
-- 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;
|