Files
omnivore/packages/db/migrations/0121.undo.alter_labels_table.sql
2023-10-05 14:30:10 +08:00

17 lines
510 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: alter_labels_table
-- Description: Alter labels table
BEGIN;
ALTER TABLE omnivore.abuse_report RENAME COLUMN library_item_id TO elastic_page_id;
ALTER TABLE omnivore.abuse_report ADD COLUMN page_id text;
ALTER TABLE omnivore.content_display_report RENAME COLUMN library_item_id TO elastic_page_id;
ALTER TABLE omnivore.content_display_report ADD COLUMN page_id text;
DROP TRIGGER update_labels_modtime ON omnivore.labels;
ALTER TABLE omnivore.labels DROP COLUMN updated_at;
COMMIT;