Redmine/db/migrate/20120714122100_update_workf...

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