11 lines
315 B
PL/PgSQL
Executable File
11 lines
315 B
PL/PgSQL
Executable File
-- Type: DO
|
|
-- Name: drop_position_trigger_ob_labels
|
|
-- Description: Drop increment_label_position and decrement_label_position trigger on omnivore.labels table
|
|
|
|
BEGIN;
|
|
|
|
DROP TRIGGER IF EXISTS increment_label_position ON omnivore.labels;
|
|
DROP TRIGGER IF EXISTS decrement_label_position ON omnivore.labels;
|
|
|
|
COMMIT;
|