Sha256: b300e2b0f5441a2fbcd35900593b13762585706aadd5b52c31e9991e302090ae

Contents?: true

Size: 483 Bytes

Versions: 195

Compression:

Stored size: 483 Bytes

Contents

class AssignContentHostToSmartProxies < ActiveRecord::Migration[4.2]
  def up
    SmartProxy.reset_column_information

    SmartProxy.all.each do |proxy|
      content_host = ::Katello::System.where(:name => proxy.name).order("created_at DESC").first

      if content_host
        proxy.content_host_id = content_host.id
        proxy.save!
      end
    end
  end

  def down
    SmartProxy.all.each do |proxy|
      proxy.content_host_id = nil
      proxy.save!
    end
  end
end

Version data entries

195 entries across 195 versions & 1 rubygems

Version Path
katello-4.2.0.rc2 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.1.3 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.2.0.rc1 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.0.2.1 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.1.2.1 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.0.2 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.1.2 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-3.18.4 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.1.1 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.1.0 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.0.1.2 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-3.18.3.1 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.1.0.rc2.2 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.1.0.rc2.1 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.0.1.1 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-3.18.3 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.1.0.rc2 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.0.1 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.1.0.rc1.1 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb
katello-4.1.0.rc1 db/migrate/20150715142649_assign_content_host_to_smart_proxies.rb