summaryrefslogtreecommitdiff
path: root/db/migrate/20121123164910_rename_code_to_path.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20121123164910_rename_code_to_path.rb')
-rw-r--r--db/migrate/20121123164910_rename_code_to_path.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/db/migrate/20121123164910_rename_code_to_path.rb b/db/migrate/20121123164910_rename_code_to_path.rb
deleted file mode 100644
index fb10baf58cf..00000000000
--- a/db/migrate/20121123164910_rename_code_to_path.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-class RenameCodeToPath < ActiveRecord::Migration
- def up
- remove_column :projects, :code
- rename_column :namespaces, :code, :path
- end
-
- def down
- add_column :projects, :code, :string
- rename_column :namespaces, :path, :code
- end
-end