Sha256: d8cc513d6503eaa567a4a5b7f001890c041c5321a3bfbb343c800ca6ff3a8415

Contents?: true

Size: 1.02 KB

Versions: 59

Compression:

Stored size: 1.02 KB

Contents

class AddUnlimitedToHostCollection < ActiveRecord::Migration[4.2]
  class ::Katello::HostCollections < ApplicationRecord
  end

  def up
    add_column :katello_host_collections, :unlimited_content_hosts, :boolean, :default => true
    change_column :katello_host_collections, :max_content_hosts, :integer, :null => true, :default => nil

    Katello::HostCollections.reset_column_information
    Katello::HostCollections.all.each do |coll|
      if coll.max_content_hosts == -1
        coll.update_attributes(:unlimited_content_hosts => true, :max_content_hosts => nil)
      elsif coll.max_content_hosts > 0
        coll.update_attributes(:unlimited_content_hosts => false)
      end
    end
  end

  def down
    Katello::HostCollections.all.each do |coll|
      coll.update_attributes(:max_content_hosts => -1) if coll.unlimited_content_hosts
    end

    remove_column :katello_host_collections, :unlimited_content_hosts
    change_column :katello_host_collections, :max_content_hosts, :integer, :null => false, :default => -1
  end
end

Version data entries

59 entries across 59 versions & 1 rubygems

Version Path
katello-3.15.3.1 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.15.3 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.15.2 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.15.1.1 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.15.1 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.15.0.1 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.15.0 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.15.0.rc2 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.15.0.rc1.3 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.15.0.rc1.2 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.15.0.rc1.1 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.15.0.rc1 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.14.1 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.13.4 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.14.0 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.13.3 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.14.0.rc2 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.13.2 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.14.0.rc1 db/migrate/20140626204902_add_unlimited_to_host_collection.rb
katello-3.13.1 db/migrate/20140626204902_add_unlimited_to_host_collection.rb