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

7 lines
166 B
Ruby

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