testing

Ruby code posted by Ping
created at 09 Feb 09:00

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
ActiveRecord::Schema.define(:version => 11) do

  create_table "addresses", :force => true do |t|
    t.integer  "addressable_id",                                                :null => false
    t.string   "addressable_type"
    t.string   "type"
    t.string   "street"
    t.string   "extended"
    t.string   "locality"
    t.string   "region",           :limit => 2
    t.string   "postal_code"
    t.string   "country_code"
    t.string   "provider"
    t.decimal  "lat",                           :precision => 15, :scale => 10
    t.decimal  "lng",                           :precision => 15, :scale => 10
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index "addresses", ["postal_code"], :name => "index_addresses_on_postal_code"
  add_index "addresses", ["type"], :name => "index_addresses_on_type"

end
858 Bytes in 3 ms with coderay