10 lines
176 B
Ruby
10 lines
176 B
Ruby
# rubocop:disable all
|
|
class AddProjectPathIndex < ActiveRecord::Migration
|
|
def up
|
|
add_index :projects, :path
|
|
end
|
|
|
|
def down
|
|
remove_index :projects, :path
|
|
end
|
|
end
|