diff options
Diffstat (limited to 'db/migrate/20140407135544_fix_namespaces.rb')
-rw-r--r-- | db/migrate/20140407135544_fix_namespaces.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/db/migrate/20140407135544_fix_namespaces.rb b/db/migrate/20140407135544_fix_namespaces.rb deleted file mode 100644 index 59665d538f0..00000000000 --- a/db/migrate/20140407135544_fix_namespaces.rb +++ /dev/null @@ -1,10 +0,0 @@ -class FixNamespaces < ActiveRecord::Migration - def up - Namespace.where('name <> path and type is null').each do |namespace| - namespace.update_attribute(:name, namespace.path) - end - end - - def down - end -end |