debian-mirror-gitlab/db/migrate/20150916145038_add_index_for_committed_at_and_id.rb

7 lines
166 B
Ruby
Raw Normal View History

# rubocop:disable all
2019-01-03 12:48:30 +05:30
class AddIndexForCommittedAtAndId < ActiveRecord::Migration
2015-09-25 12:07:36 +05:30
def change
add_index :ci_commits, [:project_id, :committed_at, :id]
end
end