diff options
Diffstat (limited to 'db/migrate/20151026182941_add_project_path_index.rb')
-rw-r--r-- | db/migrate/20151026182941_add_project_path_index.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20151026182941_add_project_path_index.rb b/db/migrate/20151026182941_add_project_path_index.rb new file mode 100644 index 00000000000..a62fe199d70 --- /dev/null +++ b/db/migrate/20151026182941_add_project_path_index.rb @@ -0,0 +1,9 @@ +class AddProjectPathIndex < ActiveRecord::Migration + def up + add_index :projects, :path + end + + def down + remove_index :projects, :path + end +end |