Mercurial > hg > soundsoftware-site
view db/migrate/20091017213536_add_missing_indexes_to_changesets.rb @ 932:5d2b359e644d cannam
Clarify repo instructions to tell user to reload page, not just look at it again
author | Chris Cannam |
---|---|
date | Wed, 04 Jul 2012 11:01:32 +0100 |
parents | 513646585e45 |
children |
line wrap: on
line source
class AddMissingIndexesToChangesets < ActiveRecord::Migration def self.up add_index :changesets, :user_id add_index :changesets, :repository_id end def self.down remove_index :changesets, :user_id remove_index :changesets, :repository_id end end