debian-mirror-gitlab/db/migrate/20150916145038_add_index_for_committed_at_and_id.rb
2019-02-15 15:39:39 +05:30

7 lines
171 B
Ruby

# rubocop:disable all
class AddIndexForCommittedAtAndId < ActiveRecord::Migration[4.2]
def change
add_index :ci_commits, [:project_id, :committed_at, :id]
end
end