Sha256: ed034fc6718a21e0bfc8abecf059c1401a57bdbc3b41536b82262de818ed2983

Contents?: true

Size: 678 Bytes

Versions: 195

Compression:

Stored size: 678 Bytes

Contents

class MoveSystemDescriptionToHost < ActiveRecord::Migration[4.2]
  class Host < ApplicationRecord
    self.table_name = "hosts"
  end

  class System < ApplicationRecord
    self.table_name = "katello_systems"
  end

  def up
    add_column :hosts, :description, :text

    System.find_each do |system|
      system.foreman_host.update_attribute(:description, system.description)
    end

    remove_column :katello_systems, :description
  end

  def down
    add_column :katello_systems, :description, :text

    System.find_each do |system|
      system.update_attribute(:description, system.foreman_host.description)
    end

    remove_column :hosts, :description
  end
end

Version data entries

195 entries across 195 versions & 1 rubygems

Version Path
katello-4.14.2 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.15.0 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.15.0.rc2 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.15.0.rc1 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.14.1 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.14.0 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.14.0.rc3 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.14.0.rc2 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.14.0.rc1.1 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.14.0.rc1 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.13.1 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.13.0 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.12.1 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.13.0.rc1 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.12.0 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.12.0.rc3 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.12.0.rc2 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.12.0.rc1 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.11.1 db/migrate/20160222143432_move_system_description_to_host.rb
katello-4.11.0 db/migrate/20160222143432_move_system_description_to_host.rb