Project

General

Profile

Download (279 Bytes) Statistics
| Branch: | Tag: | Revision:
class AddTaxonomyIdsToHosts < ActiveRecord::Migration
def self.up
add_column :hosts, :organization_id, :integer
add_column :hosts, :location_id, :integer
end

def self.down
remove_column :hosts, :organization_id
remove_column :hosts, :location_id
end
end
(125-125/137)