Sha256: 27c57960082ef166999857977f586094e7cde2a29c2570cb984ace0648f49d82

Contents?: true

Size: 564 Bytes

Versions: 21

Compression:

Stored size: 564 Bytes

Contents

class KatelloPoolOrganizationIdNotNullable < ActiveRecord::Migration[6.0]
  def up
    ::Katello::Pool.where(organization_id: nil).destroy_all
    change_column :katello_pools, :organization_id, :integer, null: false
    change_column :katello_pools, :subscription_id, :integer, null: false

    add_index :katello_pools, :organization_id
  end

  def down
    change_column :katello_pools, :organization_id, :integer, null: true
    change_column :katello_pools, :subscription_id, :integer, null: true

    remove_index :katello_pools, :organization_id
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
katello-4.3.0.rc3 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.3.0.rc2.1 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.3.0.rc2 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.3.0.rc1 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.2.1 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.2.0.1 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.1.4 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.2.0.1.rc3 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.2.0.1.rc2 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.2.0.rc2 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.1.3 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.2.0.rc1 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.1.2.1 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.1.2 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.1.1 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.1.0 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.1.0.rc2.2 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.1.0.rc2.1 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.1.0.rc2 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb
katello-4.1.0.rc1.1 db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb