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

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