8a74e7d77f
Annotate: Better look in schema.rb, this reference should be always up to date. Hirb: To reactivate hirb, look in railscasts: http://railscasts.com/episodes/48-console-tricks-revised
38 lines
660 B
YAML
38 lines
660 B
YAML
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
|
|
|
|
banana1:
|
|
article: banana
|
|
price: 1.45
|
|
tax: 7.0
|
|
unit_quantity: 18
|
|
created_at: <%= Time.now.to_s(:db) %>
|
|
|
|
banana2:
|
|
article: banana
|
|
price: 1.35
|
|
tax: 7.0
|
|
unit_quantity: 18
|
|
created_at: <%= Time.now.to_s(:db) %>
|
|
|
|
kiwi1:
|
|
article: kiwi
|
|
price: 1.11
|
|
tax: 7.0
|
|
unit_quantity: 10
|
|
created_at: <%= Time.now.to_s(:db) %>
|
|
|
|
potatoe1:
|
|
article: potatoe
|
|
price: 1.33
|
|
tax: 7.0
|
|
unit_quantity: 25
|
|
created_at: <%= Time.now.to_s(:db) %>
|
|
|
|
applejuice1:
|
|
article: applejuice
|
|
price: 1.15
|
|
tax: 7.0
|
|
unit_quantity: 1
|
|
deposit: 0.15
|
|
created_at: <%= Time.now.to_s(:db) %>
|
|
|