Project

General

Profile

Download (322 Bytes) Statistics
| Branch: | Tag: | Revision:
class AddProvisionMethodToHosts < ActiveRecord::Migration[4.2]
def up
add_column :hosts, :provision_method, :string, :limit => 255
Host::Managed.unscoped.each do |h|
h.update_attribute(:provision_method, h.capabilities.first)
end
end

def down
remove_column :hosts, :provision_method
end
end
(196-196/405)