Project

General

Profile

Download (302 Bytes) Statistics
| Branch: | Tag: | Revision:
class AddProvisionMethodToHosts < ActiveRecord::Migration
def up
add_column :hosts, :provision_method, :string
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/286)