summaryrefslogtreecommitdiff
path: root/db/migrate/20150209222013_add_missing_index.rb
blob: 99544ab3928a7ae74c1c123feba154f6ceb6a2da (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddMissingIndex < ActiveRecord::Migration[4.2]
  def change
    add_index "services", [:created_at, :id]
  end
end