13 lines
245 B
PL/PgSQL
Executable File
13 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;
|