mirror of
https://github.com/redmine/redmine.git
synced 2025-11-01 02:46:13 +01:00
10 lines
190 B
Ruby
10 lines
190 B
Ruby
|
|
class UpdateWorkflowsToSti < ActiveRecord::Migration
|
||
|
|
def up
|
||
|
|
WorkflowRule.update_all "type = 'WorkflowTransition'"
|
||
|
|
end
|
||
|
|
|
||
|
|
def down
|
||
|
|
WorkflowRule.update_all "type = NULL"
|
||
|
|
end
|
||
|
|
end
|