summaryrefslogtreecommitdiff
path: root/db/migrate/20160615142710_add_index_on_requested_at_to_members.rb
blob: 63f7392e54fc073445b86680931dc61c21e1fa39 (plain)
1
2
3
4
5
6
7
8
9
class AddIndexOnRequestedAtToMembers < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  disable_ddl_transaction!

  def change
    add_concurrent_index :members, :requested_at
  end
end