Sha256: fd20f4b9af3a109c1b76853ad88f4a72d5aee7f6b55df9c83d653374d5c0726e

Contents?: true

Size: 774 Bytes

Versions: 6

Compression:

Stored size: 774 Bytes

Contents

require 'sniff/database'

Sniff::Database.define_schema do
  create_table "diet_records", :force => true do |t|
    t.string   "name"
    t.integer  "profile_id"
    t.integer  "diet_class_id"
    t.float    "proximity"
    t.float    "conventionality"
    t.integer  "size"
    t.float    "intensity"
    t.datetime "created_at"
    t.datetime "updated_at"
    t.float    "red_meat_share"
    t.float    "poultry_share"
    t.float    "fish_share"
    t.float    "eggs_share"
    t.float    "nuts_share"
    t.float    "dairy_share"
    t.float    "cereals_and_grains_share"
    t.float    "fruit_share"
    t.float    "vegetables_share"
    t.float    "oils_and_sugars_share"
    t.datetime "new_retirement"
    t.date     "start_date"
    t.date     "end_date"
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

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