9 lines
154 B
Ruby
9 lines
154 B
Ruby
class AddProjectPathIndex < ActiveRecord::Migration
|
|
def up
|
|
add_index :projects, :path
|
|
end
|
|
|
|
def down
|
|
remove_index :projects, :path
|
|
end
|
|
end
|