class AddLocationSettingsToLocationTable < ActiveRecord::Migration
  def self.up
    add_column :locations, :jackrabbit_id, :string
    add_column :locations, :about_text, :text
    add_column :locations, :analytics_code, :text
  end

  def self.down
    remove_column :locations, :jackrabbit_id
    remove_column :locations, :about_text
    remove_column :locations, :analytics_code
  end
end