Files
huskies/server/migrations/20240104000000_drop_blocked_column.sql
T
2026-05-13 06:09:34 +00:00

5 lines
284 B
SQL

-- Story 945: drop the `blocked` boolean column from the shadow pipeline_items
-- table. `Stage::Blocked { reason }` is now the single source of truth for
-- "blocked" — the legacy flag has been deleted from the CRDT and Rust types.
ALTER TABLE pipeline_items DROP COLUMN blocked;