Sha256: 7028510f5ef6ef787573a7d53d12f73342337aa0740beac7f9ad5344c3632741

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

class AddHostIdToTemplateInvocation < ActiveRecord::Migration
  class FakeTemplateInvocation < ActiveRecord::Base
    set_table_name 'template_invocations'
  end

  def up
    add_column :template_invocations, :host_id, :integer
    add_foreign_key "template_invocations", "hosts", :name => "template_invocations_hosts_id_fk", :column => 'host_id'
    FakeTemplateInvocation.reset_column_information

    say 'Migrating existing execution locks to explicit relations, this may take a while'
    FakeTemplateInvocation.all.each do |template_invocation|
      task = ForemanTasks::Task.for_action_types('Actions::RemoteExecution::RunHostJob').joins(:locks).where(
        :'foreman_tasks_locks.resource_type' => 'TemplateInvocation',
        :'foreman_tasks_locks.resource_id' => template_invocation.id).first
      next if task.nil? # skip invocations from very early versions of remote executions
      host_id = task.locks.where(:'foreman_tasks_locks.resource_type' => 'Host::Managed').first.resource_id
      next unless Host.find_by_id(host_id)

      template_invocation.host_id = host_id
      template_invocation.save!
    end
  end

  def down
    remove_foreign_key "template_invocations", :name => "template_invocations_hosts_id_fk"
    remove_column :template_invocations, :host_id
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
foreman_remote_execution-0.1.2 db/migrate/20151215114631_add_host_id_to_template_invocation.rb