a7e0ca9e83
Present in the large majority of files of each respective type.
10 lines
220 B
Ruby
10 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
|