debian-mirror-gitlab/db/migrate/20150209222013_add_missing_index.rb
2016-06-16 23:09:34 +05:30

7 lines
138 B
Ruby

# rubocop:disable all
class AddMissingIndex < ActiveRecord::Migration
def change
add_index "services", [:created_at, :id]
end
end