;]
[askyou.git] / db / migrate / 20091017213642_add_missing_indexes_to_issue_categories.rb
blob3f5b2b18541f656801cd8ce8374146e7f1c3fb55
1 class AddMissingIndexesToIssueCategories < ActiveRecord::Migration
2   def self.up
3     add_index :issue_categories, :assigned_to_id
4   end
6   def self.down
7     remove_index :issue_categories, :assigned_to_id
8   end
9 end