redmine/db/migrate/20120714122100_update_workflows_to_sti.rb

10 lines
190 B
Ruby
Raw Normal View History

class UpdateWorkflowsToSti < ActiveRecord::Migration
def up
WorkflowRule.update_all "type = 'WorkflowTransition'"
end
def down
WorkflowRule.update_all "type = NULL"
end
end