Fix faulty namespaces

This commit is contained in:
Job van der Voort 2014-04-07 16:03:49 +02:00
parent 11d3a00c28
commit 6d19696267
2 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,10 @@
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

View File

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20140313092127) do
ActiveRecord::Schema.define(version: 20140407135544) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"