class AddJackRabbitIdToLocations < ActiveRecord::Migration def self.up add_column :locations, :jackrabbit_id, :string end def self.down remove_column :locations, :jackrabbit_id end end