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

10 lines
216 B
PL/PgSQL
Executable File

-- Type: DO
-- Name: add_source_to_entity_labels
-- Description: Add source column to omnivore.entity_labels table
BEGIN;
ALTER TABLE omnivore.entity_labels ADD COLUMN source TEXT NOT NULL DEFAULT 'user';
COMMIT;