debian-mirror-gitlab/db/migrate/20151026182941_add_project_path_index.rb
2015-11-26 14:37:03 +05:30

10 lines
154 B
Ruby

class AddProjectPathIndex < ActiveRecord::Migration
def up
add_index :projects, :path
end
def down
remove_index :projects, :path
end
end