Project

General

Profile

Download (458 Bytes) Statistics
| Branch: | Tag: | Revision:
class AddSubnetAndDomainToHostGroups < ActiveRecord::Migration
def up
add_column :hostgroups, :subnet_id, :integer unless column_exists? :hostgroups, :subnet_id
add_column :hostgroups, :domain_id, :integer unless column_exists? :hostgroups, :domain_id
end

def down
remove_column :hostgroups, :subnet_id if column_exists? :hostgroups, :subnet_id
remove_column :hostgroups, :domain_id if column_exists? :hostgroups, :domain_id
end
end
(86-86/282)