class CreateLocationSettings < ActiveRecord::Migration
  def self.up
    create_table :location_settings do |t|
      t.text :about_text
      t.string :jackrabbit_id
      t.integer :location_id
      t.timestamps
    end
  end

  def self.down
    drop_table :location_settings
  end
end