Sha256: d01532470a217c0aa8e2b27bd3090fae31ad7466816bab5298533b46c4adc952
Contents?: true
Size: 1.28 KB
Versions: 8
Compression:
Stored size: 1.28 KB
Contents
class AddHostIdToTemplateInvocation < ActiveRecord::Migration class FakeTemplateInvocation < ActiveRecord::Base self.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
8 entries across 8 versions & 1 rubygems