view .svn/pristine/b4/b476af493226811e3e20008decd6722599f92278.svn-base @ 1386:e4c393cebb1a luisf

Merger from testing branch.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 24 Sep 2013 16:25:05 +0100
parents 038ba2d95de8
children
line wrap: on
line source
class UpdateWorkflowsToSti < ActiveRecord::Migration
  def up
    WorkflowRule.update_all "type = 'WorkflowTransition'"
  end

  def down
    WorkflowRule.update_all "type = NULL"
  end
end