23 lines
526 B
YAML
23 lines
526 B
YAML
# == Schema Information
|
|
# Schema version: 20090102171850
|
|
#
|
|
# Table name: group_order_results
|
|
#
|
|
# id :integer(4) not null, primary key
|
|
# order_id :integer(4) default(0), not null
|
|
# group_name :string(255) default(""), not null
|
|
# price :decimal(8, 2) default(0.0), not null
|
|
#
|
|
|
|
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
|
|
one:
|
|
id: 1
|
|
order_id: 1
|
|
group_name: Order Group 1
|
|
price: 99.95
|
|
two:
|
|
id: 2
|
|
order_id: 1
|
|
group_name: Order Group 2
|
|
price: 99.95
|
|
|