Mercurial > hg > soundsoftware-site
view db/migrate/20130202090625_add_projects_inherit_members.rb @ 1550:7d825cbd76c8 feature_1136
Ensure we don't leave a git repo lying around for a repo with no corresponding (even if empty) authormap
author | Chris Cannam |
---|---|
date | Tue, 12 Jan 2016 17:22:27 +0000 |
parents | 261b3d9a4903 |
children |
line wrap: on
line source
class AddProjectsInheritMembers < ActiveRecord::Migration def up add_column :projects, :inherit_members, :boolean, :default => false, :null => false end def down remove_column :projects, :inherit_members end end