Sha256: 8ee9ba378bc853b64576a621248d6c44590030201d03b098142e08e9c489d89b

Contents?: true

Size: 677 Bytes

Versions: 10

Compression:

Stored size: 677 Bytes

Contents

require 'sniff/database'

Sniff::Database.define_schema do
  create_table "automobile_records", :force => true do |t|
    t.datetime "created_at"
    t.datetime "updated_at"
    t.date     "date"
    t.float    "fuel_efficiency"
    t.float    "urbanity"
    t.float    "annual_distance_estimate"
    t.float    "weekly_distance_estimate"
    t.float    "daily_distance_estimate"
    t.float    "daily_duration"
    t.date     "acquisition"
    t.boolean  "hybridity"
    t.date     "retirement"
    t.string   "make_id"
    t.string   "model_id"
    t.string   "model_year_id"
    t.string   "variant_id"
    t.string   "size_class_id"
    t.string   "fuel_type_id"
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
automobile-ruby19-0.0.13 lib/test_support/db/schema.rb
automobile-0.0.13 lib/test_support/db/schema.rb
automobile-0.0.12 lib/test_support/db/schema.rb
automobile-0.0.11 lib/test_support/db/schema.rb
automobile-0.0.10 lib/test_support/db/schema.rb
automobile-0.0.9 lib/test_support/db/schema.rb
automobile-0.0.8 lib/test_support/db/schema.rb
automobile-0.0.7 lib/test_support/db/schema.rb
automobile-0.0.5 lib/test_support/db/schema.rb
automobile-0.0.4 lib/test_support/db/schema.rb