summaryrefslogtreecommitdiffstats
path: root/db/migrate/20091017213536_add_missing_indexes_to_changesets.rb
blob: 8cdeef43306101041d5089944d39700ab8d86102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: false

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