组织子域名迁移

This commit is contained in:
ouyangxuhua 2016-02-23 17:09:33 +08:00
parent 16efcafe77
commit 3eb7c62b85
1 changed files with 3 additions and 3 deletions

View File

@ -2,9 +2,9 @@ class MoveDomainToSecdomain < ActiveRecord::Migration
def up
Secdomain.transaction do
#将组织中的子域名迁移至secdomains表
# Organization.where("domain is not null").each do |org|
# Secdomain.create(sub_type: 2, subname: org.domain, pid: org.id)
# end
Organization.where("domain is not null").each do |org|
Secdomain.create(sub_type: 2, subname: org.domain, pid: org.id)
end
#remove_column :organizations, :domain
end
end