To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / db / migrate / 20120714122100_update_workflows_to_sti.rb @ 1298:4f746d8966dd

History | View | Annotate | Download (190 Bytes)

1
class UpdateWorkflowsToSti < ActiveRecord::Migration
2
  def up
3
    WorkflowRule.update_all "type = 'WorkflowTransition'"
4
  end
5

    
6
  def down
7
    WorkflowRule.update_all "type = NULL"
8
  end
9
end