summaryrefslogtreecommitdiff
path: root/db/migrate/20160106162223_add_index_milestones_title.rb
blob: d42bddefe643e3d80239f1deae92b8cfd336b2bc (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddIndexMilestonesTitle < ActiveRecord::Migration[4.2]
  def change
    add_index :milestones, :title
  end
end