5 lines
284 B
SQL
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;
|