Files
omnivore/packages/db/migrations/0148.undo.add_source_to_entity_labels.sql
2023-12-13 14:35:24 +08:00

10 lines
190 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: add_source_to_entity_labels
-- Description: Add source column to omnivore.entity_labels table
BEGIN;
ALTER TABLE omnivore.entity_labels DROP COLUMN source;
COMMIT;