16 lines
352 B
PL/PgSQL
Executable File
16 lines
352 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: update_labels_table
|
|
-- Description: Update labels table and create link_labels table
|
|
|
|
BEGIN;
|
|
|
|
ALTER TABLE omnivore.labels
|
|
ADD COLUMN link_id uuid REFERENCES omnivore.links ON DELETE CASCADE,
|
|
DROP COLUMN color,
|
|
DROP COLUMN description,
|
|
DROP CONSTRAINT label_name_unique;
|
|
|
|
DROP TABLE omnivore.link_labels;
|
|
|
|
COMMIT;
|