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 / .svn / pristine / a8 / a89c2391944884496b2422d8187b6c5f71ac2c07.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (495 Bytes)

1
class AddWorkflowsAssigneeAndAuthor < ActiveRecord::Migration
2
  def self.up
3
    add_column :workflows, :assignee, :boolean, :null => false, :default => false
4
    add_column :workflows, :author, :boolean, :null => false, :default => false
5
    Workflow.update_all("assignee = #{Workflow.connection.quoted_false}")
6
    Workflow.update_all("author = #{Workflow.connection.quoted_false}")
7
  end
8

    
9
  def self.down
10
    remove_column :workflows, :assignee
11
    remove_column :workflows, :author
12
  end
13
end