Skip to content

Latest commit

 

History

History
145 lines (93 loc) · 3.93 KB

measurements.md

File metadata and controls

145 lines (93 loc) · 3.93 KB

packages. Fractions. how covert 1 spoon, 2/5 spoon, 1/8 spoon to one number


Examples:


wnjcc

Nice Image, I want it on Readme

create table Measure (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, 
	name VARCHAR(30)) 
	ENGINE=InnoDB DEFAULT CHARSET=utf8; 

INSERT INTO Measure (name) VALUES('CUP'), ('TEASPOON'), ('TABLESPOON');


'Food Categories'

Appetizers
Breads
Fish
Beef
Poultry
Pork
Soup
Pastas
Sides
Desserts

Directions

id
recipes_id
direction
prep_time
cook_time

Measurements

id
ingredients_id
name

QUANTITIES

id
recipe_id -- links to recipes table
ingredient_id -- links to ingredients table
quantity

https://stackoverflow.com/questions/13882738/designing-a-recipe-database-that-needs-to-include-ingredients-as-well-as-sub-rec

image

image

image

image

image image

image

image

https://stackoverflow.com/questions/38463361/creating-a-recipe-database image

image

image

https://stackoverflow.com/questions/17651424/bill-of-materials-database-model

image

https://forum.codeigniter.com/post-7676.html

read: https://fmforums.com/topic/43537-recipe-database-using-kitchen-inventory/

image


GS7 release