debian-mirror-gitlab/db/migrate/20160106162223_add_index_milestones_title.rb

7 lines
135 B
Ruby
Raw Normal View History

# rubocop:disable all
2019-01-03 12:48:30 +05:30
class AddIndexMilestonesTitle < ActiveRecord::Migration
def change
add_index :milestones, :title
end
end