20120714122100_update_workflows_to_sti.rb
9 lines
| 190 B
| text/x-ruby
|
RubyLexer
|
r9794 | class UpdateWorkflowsToSti < ActiveRecord::Migration | ||
def up | ||||
WorkflowRule.update_all "type = 'WorkflowTransition'" | ||||
end | ||||
def down | ||||
WorkflowRule.update_all "type = NULL" | ||||
end | ||||
end | ||||