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 / 20130202090625_add_projects_inherit_members.rb @ 1298:4f746d8966dd

History | View | Annotate | Download (229 Bytes)

1 1295:622f24f53b42 Chris
class AddProjectsInheritMembers < ActiveRecord::Migration
2
  def up
3
    add_column :projects, :inherit_members, :boolean, :default => false, :null => false
4
  end
5
6
  def down
7
    remove_column :projects, :inherit_members
8
  end
9
end