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