lawrencechanyewlong/wherewolfpro

View on GitHub
db/migrate/20160310072652_create_saved_locations.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateSavedLocations < ActiveRecord::Migration
  def change
    create_table :saved_locations do |t|
      t.string :name
      t.float :address_lat
      t.float :address_lng
      t.string :uid

      t.timestamps null: false
    end
  end
end