omnivore/packages/db/migrations/0070.undo.update_labels_table.sql

16 lines
352 B
MySQL
Raw Normal View History

2022-02-21 08:03:00 +00:00
-- 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,
2022-02-22 06:18:55 +00:00
DROP CONSTRAINT label_name_unique;
2022-02-21 08:03:00 +00:00
DROP TABLE omnivore.link_labels;
COMMIT;