Project

General

Profile

Download (478 Bytes) Statistics
| Branch: | Tag: | Revision:
class AssignPtablesToTaxonomies < ActiveRecord::Migration
def up
if SETTINGS[:organizations_enabled] || SETTINGS[:locations_enabled]
Ptable.all.each do |ptable|
if SETTINGS[:organizations_enabled]
ptable.organizations = ptable.hosts.map(&:organization).compact.uniq
end

if SETTINGS[:locations_enabled]
ptable.locations = ptable.hosts.map(&:location).compact.uniq
end
end
end
end

def down
end
end
(274-274/281)