5 lines
171 B
SQL
5 lines
171 B
SQL
UPDATE operation_task
|
|
SET hold_reason = 'task_result_uncertain', updated_at = now()
|
|
WHERE state = 'needs_confirmation'
|
|
AND hold_reason = 'legacy_confirmation_required';
|