mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
11 lines
202 B
PL/PgSQL
Executable file
11 lines
202 B
PL/PgSQL
Executable file
-- Type: UNDO
|
|
-- Name: user_articles
|
|
-- Description: user to article map model
|
|
|
|
BEGIN;
|
|
|
|
DROP TRIGGER update_user_articles_modtime ON omnivore.user_articles;
|
|
|
|
DROP TABLE omnivore.user_articles;
|
|
|
|
COMMIT;
|