summaryrefslogtreecommitdiffstats
path: root/db/migrate/20091017213536_add_missing_indexes_to_changesets.rb
blob: a7191084199f3408203b7e22a9eb3a3df60cdda4 (plain)
1
2
3
4
5
6
7
8
9
10
11
class AddMissingIndexesToChangesets < ActiveRecord::Migration[4.2]
  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