gitlabhq/db/migrate/20121219095402_indices_for_...

7 lines
156 B
Ruby

class IndicesForNotes < ActiveRecord::Migration
def change
add_index :notes, :commit_id
add_index :notes, [:project_id, :noteable_type]
end
end