Project

General

Profile

Download (806 Bytes) Statistics
| Branch: | Tag: | Revision:
class AddHostGroupDefaults < ActiveRecord::Migration[4.2]
def up
add_column :hostgroups, :environment_id, :integer
add_column :hostgroups, :operatingsystem_id, :integer
add_column :hostgroups, :architecture_id, :integer
add_column :hostgroups, :medium_id, :integer
add_column :hostgroups, :ptable_id, :integer
add_column :hostgroups, :root_pass, :string, :limit => 255
add_column :hostgroups, :puppetmaster, :string, :limit => 255
end

def down
remove_column :hostgroups, :environment_id
remove_column :hostgroups, :operatingsystem_id
remove_column :hostgroups, :architecture_id
remove_column :hostgroups, :medium_id
remove_column :hostgroups, :ptable_id
remove_column :hostgroups, :root_pass
remove_column :hostgroups, :puppetmaster
end
end
(65-65/409)