mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
15 lines
352 B
PL/PgSQL
Executable file
15 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;
|