Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20150209222013_add_missing_index.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18e3ac2cbbb76b3a937ac9b22cc170420d9ac563 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddMissingIndex < ActiveRecord::Migration
  def change
    add_index "services", [:created_at, :id]
  end
end