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