13 lines
526 B
SQL
13 lines
526 B
SQL
-- Widen bulk_operations.status
|
|||
|
|
--
|
||
|
|
-- The code writes 'completed_with_errors' (21 chars) when a bulk operation
|
||
|
|
-- finishes with per-ticket failures, but the column was varchar(20), so the
|
||
|
|
-- write failed with "Data too long for column 'status'". This was unreachable
|
||
|
|
-- while bulk status changes forced every transition through; now that they
|
||
|
|
-- honour the Workflow Designer, partial failures are a normal outcome.
|
||
|
|
--
|
||
|
|
-- Safe to re-run.
|
||
|
|
|
||
|
|
ALTER TABLE `bulk_operations`
|
||
|
|
MODIFY COLUMN `status` varchar(32) DEFAULT 'pending';
|