2014-12-04 19:50:02 +01:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: products
|
|
|
|
#
|
2014-12-04 20:32:31 +01:00
|
|
|
# id :integer not null, primary key
|
2015-02-09 17:06:24 +01:00
|
|
|
# name :string(255) not null
|
|
|
|
# price_cents :integer default(0), not null
|
|
|
|
# category :integer default(0)
|
|
|
|
# stock :integer default(0), not null
|
2014-12-04 20:32:31 +01:00
|
|
|
# avatar_file_name :string(255)
|
|
|
|
# avatar_content_type :string(255)
|
|
|
|
# avatar_file_size :integer
|
|
|
|
# avatar_updated_at :datetime
|
2015-02-09 17:06:24 +01:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2014-12-04 19:50:02 +01:00
|
|
|
#
|
|
|
|
|
2014-11-24 21:45:32 +01:00
|
|
|
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
|
|
|
|
|
2015-03-03 15:56:23 +01:00
|
|
|
fanta:
|
|
|
|
name: 'Fanta'
|
|
|
|
price_cents: 60
|
|
|
|
stock: 100
|
2014-11-24 21:45:32 +01:00
|
|
|
|
2015-03-03 15:56:23 +01:00
|
|
|
cola:
|
|
|
|
name: 'Cola'
|
|
|
|
price_cents: 60
|
|
|
|
stock: 0
|
|
|
|
|
|
|
|
mate:
|
|
|
|
name: 'Club Mate'
|
|
|
|
price_cents: 120
|
|
|
|
stock: 100
|
|
|
|
|
|
|
|
bueno:
|
|
|
|
name: 'Kinder Bueno'
|
|
|
|
stock: 50
|
|
|
|
price_cents: 120
|