debian-mirror-gitlab/db/migrate/20140407135544_fix_namespaces.rb
2014-09-02 14:37:02 +02:00

11 lines
220 B
Ruby

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