mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
12 lines
245 B
PL/PgSQL
Executable file
12 lines
245 B
PL/PgSQL
Executable file
-- Type: UNDO
|
|
-- Name: entity_labels
|
|
-- Description: Create table entity_labels
|
|
|
|
BEGIN;
|
|
|
|
DROP TRIGGER library_item_labels_update ON omnivore.entity_labels;
|
|
DROP FUNCTION update_library_item_labels();
|
|
|
|
DROP TABLE omnivore.entity_labels;
|
|
|
|
COMMIT;
|