Mercurial > hg > soundsoftware-site
view .svn/pristine/c1/c1223f031fa2bf3b78639a2a5da945e7a735cdcd.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 AddMissingIndexesToIssues < ActiveRecord::Migration def self.up add_index :issues, :status_id add_index :issues, :category_id add_index :issues, :assigned_to_id add_index :issues, :fixed_version_id add_index :issues, :tracker_id add_index :issues, :priority_id add_index :issues, :author_id end def self.down remove_index :issues, :status_id remove_index :issues, :category_id remove_index :issues, :assigned_to_id remove_index :issues, :fixed_version_id remove_index :issues, :tracker_id remove_index :issues, :priority_id remove_index :issues, :author_id end end