fix: add certifications column to switches table (migration 039a)

This commit is contained in:
Rene Fichtmueller 2026-04-20 23:16:52 +02:00
parent 5737ae0362
commit dfadc8eb4e

View File

@ -0,0 +1,5 @@
-- Migration 039a — Add certifications column to switches table
-- The core table creation (002) omitted this column; added here before the seed (040).
ALTER TABLE switches
ADD COLUMN IF NOT EXISTS certifications TEXT[] DEFAULT '{}';