master
 1class CreateLocations < ActiveRecord::Migration
 2  def change
 3    create_table :locations, id: :uuid do |t|
 4      t.uuid :locatable_id
 5      t.string :locatable_type
 6      t.string :latitude
 7      t.string :longitude
 8      t.string :city
 9      t.string :country
10      t.timestamps
11    end
12  end
13end