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

20160106162223_add_index_milestones_title.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b9b6445a08392371c2a80dee043f967368fb54e (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddIndexMilestonesTitle < ActiveRecord::Migration
  def change
    add_index :milestones, :title
  end
end