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