注释迁移

This commit is contained in:
ouyangxuhua 2016-02-23 16:55:25 +08:00
parent 035b22d6dd
commit 16efcafe77
1 changed files with 3 additions and 3 deletions

View File

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