Files
omnivore/packages/db/migrations/0070.undo.update_labels_table.sql
2022-02-24 14:44:48 +08:00

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;