Sha256: 9add383e743de2cff6c8531206b75a339790775ada4af3d71014f59ab29f725c

Contents?: true

Size: 747 Bytes

Versions: 3

Compression:

Stored size: 747 Bytes

Contents

ActiveRecord::Schema.define do
  create_table "cars", :force => true do |t|
    t.string "model"
  end

  create_table "users", :force => true do |t|
    t.string   "name"
    t.string   "last_name"
    t.string   "address"
    t.string   "email",           :null => false
    t.string   "zip"
    t.string   "country"
    t.datetime "created_at",      :null => false
    t.datetime "updated_at",      :null => false
    t.boolean  "receive_email"
    t.text     "description"
    t.string   "favorite_color"
    t.text     "favorite_books"
    t.datetime "birth_date"
    t.float    "money"
    t.float    "money_proc"
    t.string   "height"
    t.string   "favorite_movie"
    t.string   "favorite_locale"
    t.integer  "zero_field"
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
best_in_place-3.1.0 spec/internal/db/schema.rb
best_in_place-3.0.3 spec/internal/db/schema.rb
best_in_place-3.0.2 spec/internal/db/schema.rb