Field | Datatype |
---|---|
cat_num | string |
title | string |
description | text |
image_url | string |
price | string |
Field | Datatype |
---|---|
last_name | string |
first_name | string |
address | string |
cc_type | string |
cc_num | integer |
cc_exp | date |
Field | Datatype |
---|---|
customer_id | integer |
Field | Datatype |
---|---|
customer_id | integer |
product_id | integer |
quantity | integer |
http://localhost:3000/doctors http://localhost:3000/patients
# Although only one shopping cart should be active, # there may be many checked out and closed ones. # Product model: has_many :line_items # Customer model: has_many :shopping_carts # ShoppingCart model: belongs_to :customer has_many :line_items # LineItem model: belongs_to :shopping_cart belongs_to :customer