Sha256: d8b141ce15f1dbbcc0b70980dc10e3dac146e58f9c9922a18a608ddf063f9380
Contents?: true
Size: 1.14 KB
Versions: 6
Compression:
Stored size: 1.14 KB
Contents
# == Schema Information # # Table name: gmaps # # id :integer not null, primary key # full_address :string(255) # street_number :string(255) # route :string(255) # locality :string(255) # postal_code :string(255) # country :string(255) # administrative_area_level_2 :string(255) # administrative_area_level_1 :string(255) # gtype :string(255) # lat :decimal(10, 6) # lng :decimal(10, 6) # zoom :integer default(15) # created_at :datetime # updated_at :datetime # # Read about factories at https://github.com/thoughtbot/factory_girl FactoryGirl.define do factory :gmap do full_address "MyString" street_number "MyString" route "MyString" locality "MyString" postal_code "MyString" country "MyString" administrative_area_level_2 "MyString" administrative_area_level_1 "MyString" type "" lat "9.99" lng "9.99" zoom 1 end end
Version data entries
6 entries across 6 versions & 1 rubygems