mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
12 lines
249 B
MySQL
12 lines
249 B
MySQL
|
|
-- Type: UNDO
|
||
|
|
-- Name: article_saving_request
|
||
|
|
-- Description: Creates article saving request table
|
||
|
|
|
||
|
|
BEGIN;
|
||
|
|
|
||
|
|
DROP TRIGGER update_article_saving_request_modtime ON omnivore.article_saving_request;
|
||
|
|
|
||
|
|
DROP TABLE omnivore.article_saving_request;
|
||
|
|
|
||
|
|
COMMIT;
|