suitepro/db/migrate/20120714122100_update_workflows_to_sti.rb
2018-02-02 22:19:29 +01:00

9 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