summaryrefslogtreecommitdiff
path: root/db/migrate/20151026182941_add_project_path_index.rb
blob: a62fe199d70e75349d4b573785396c7f72eb192c (plain)
1
2
3
4
5
6
7
8
9
class AddProjectPathIndex < ActiveRecord::Migration
  def up
    add_index :projects, :path
  end

  def down
    remove_index :projects, :path
  end
end