Mercurial > hg > soundsoftware-site
annotate .svn/pristine/fe/fe2e55a5ec8942da65be048ad7fee177c1286f80.svn-base @ 1536:e2a3230f61fa live
Add script to print out a committer authormap file for a project's repo
author | Chris Cannam |
---|---|
date | Tue, 19 May 2015 16:14:34 +0100 |
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 |