Mercurial > hg > soundsoftware-site
view .svn/pristine/ec/ec80e6b58d5a9273315682fa45876f90222c9b81.svn-base @ 1192:3c9ca27c2d3d feature_564
Add approximate back-of-envelope calculation of project maturity
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Tue, 22 Jan 2013 16:51:56 +0000 |
parents | cbb26bc654de |
children |
line wrap: on
line source
class AddProjectToEnumerations < ActiveRecord::Migration def self.up add_column :enumerations, :project_id, :integer, :null => true, :default => nil add_index :enumerations, :project_id end def self.down remove_index :enumerations, :project_id remove_column :enumerations, :project_id end end