fix(db): tolerate knowledge enum owner mismatch
Some checks failed
CD Pipeline / tests (push) Successful in 1m48s
Code Review / ai-code-review (push) Successful in 27s
run-migration / migrate (push) Successful in 22s
CD Pipeline / build-and-deploy (push) Failing after 31m4s
CD Pipeline / post-deploy-checks (push) Has been skipped

This commit is contained in:
Your Name
2026-05-01 11:08:21 +08:00
parent 3a6acae408
commit 337bcb912e

View File

@@ -1,6 +1,23 @@
-- Phase 25 Knowledge Auto-Harvesting enum compatibility
-- Phase 25 Knowledge Auto-Harvesting enum compatibility.
-- SQLAlchemy stores Enum names (AUTO_RUNBOOK / ANTI_PATTERN) for EntryType.
-- Older production DBs only had lowercase labels from the first migration.
--
-- Note: some CI migrator roles do not own enum types. Production was patched
-- manually on 2026-05-01; this migration is kept as the durable schema record
-- and tolerates insufficient_privilege so the migration workflow can continue.
ALTER TYPE entrytype ADD VALUE IF NOT EXISTS 'AUTO_RUNBOOK';
ALTER TYPE entrytype ADD VALUE IF NOT EXISTS 'ANTI_PATTERN';
DO $$
BEGIN
ALTER TYPE entrytype ADD VALUE IF NOT EXISTS 'AUTO_RUNBOOK';
EXCEPTION
WHEN insufficient_privilege THEN
RAISE NOTICE 'Skipping entrytype AUTO_RUNBOOK; migrator does not own enum type';
END $$;
DO $$
BEGIN
ALTER TYPE entrytype ADD VALUE IF NOT EXISTS 'ANTI_PATTERN';
EXCEPTION
WHEN insufficient_privilege THEN
RAISE NOTICE 'Skipping entrytype ANTI_PATTERN; migrator does not own enum type';
END $$;