gitlab-org--gitlab-foss/db/migrate/20151026182941_add_project_...

11 lines
181 B
Ruby

# rubocop:disable all
class AddProjectPathIndex < ActiveRecord::Migration[4.2]
def up
add_index :projects, :path
end
def down
remove_index :projects, :path
end
end