Sha256: 5914bccd2ae08fcba1d1aef06d3c6d40b14f3a55bf945d1da7df37ebdec25b89

Contents?: true

Size: 430 Bytes

Versions: 8

Compression:

Stored size: 430 Bytes

Contents

require 'sniff/database'

Sniff::Database.define_schema do
  create_table "motorcycle_records", :force => true do |t|
    t.string   "name"
    t.integer  "profile_id"
    t.date     "date"
    t.float    "fuel_efficiency"
    t.float    "annual_distance_estimate"
    t.float    "weekly_distance_estimate"
    t.date     "acquisition"
    t.date     "retirement"
    t.datetime "updated_at"
    t.datetime "created_at"
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
motorcycle-0.0.10 lib/test_support/db/schema.rb
motorcycle-0.0.9 lib/test_support/db/schema.rb
motorcycle-0.0.8 lib/test_support/db/schema.rb
motorcycle-0.0.7 lib/test_support/db/schema.rb
motorcycle-0.0.6 lib/test_support/db/schema.rb
motorcycle-0.0.5 lib/test_support/db/schema.rb
motorcycle-0.0.4 lib/test_support/db/schema.rb
motorcycle-0.0.3 lib/test_support/db/schema.rb