Mercurial > hg > soundsoftware-site
annotate db/migrate/20130202090625_add_projects_inherit_members.rb @ 1544:e9e55585ebf2 feature_1136
Add fast-export
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Tue, 12 Jan 2016 13:39:30 +0000 |
parents | 261b3d9a4903 |
children |
rev | line source |
---|---|
Chris@1464 | 1 class AddProjectsInheritMembers < ActiveRecord::Migration |
Chris@1464 | 2 def up |
Chris@1464 | 3 add_column :projects, :inherit_members, :boolean, :default => false, :null => false |
Chris@1464 | 4 end |
Chris@1464 | 5 |
Chris@1464 | 6 def down |
Chris@1464 | 7 remove_column :projects, :inherit_members |
Chris@1464 | 8 end |
Chris@1464 | 9 end |