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