Files
huskies/server/migrations/20240104000000_drop_blocked_column.sql
T

5 lines
284 B
SQL
Raw Normal View History

2026-05-13 06:05:01 +00:00
-- 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;