注释迁移

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
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