load-ingredients.sql 2.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. INSERT INTO ingredient (ingr_name,description) VALUES ('avocado',null);
  2. INSERT INTO ingredient (ingr_name,description) VALUES ('banana',null);
  3. INSERT INTO ingredient (ingr_name,description) VALUES ('chocolate chips (dark)',null);
  4. INSERT INTO ingredient (ingr_name,description) VALUES ('chocolate chips (milk)',null);
  5. INSERT INTO ingredient (ingr_name,description) VALUES ('cornmeal',null);
  6. INSERT INTO ingredient (ingr_name,description) VALUES ('cumin',null);
  7. INSERT INTO ingredient (ingr_name,description) VALUES ('dill',null);
  8. INSERT INTO ingredient (ingr_name,description) VALUES ('egg',null);
  9. INSERT INTO ingredient (ingr_name,description) VALUES ('fennel',null);
  10. INSERT INTO ingredient (ingr_name,description) VALUES ('flour (buckwheat)',null);
  11. INSERT INTO ingredient (ingr_name,description) VALUES ('flour (rye)',null);
  12. INSERT INTO ingredient (ingr_name,description) VALUES ('flour (white)',null);
  13. INSERT INTO ingredient (ingr_name,description) VALUES ('flour (whole wheat)',null);
  14. INSERT INTO ingredient (ingr_name,description) VALUES ('garlic',null);
  15. INSERT INTO ingredient (ingr_name,description) VALUES ('ice cube',null);
  16. INSERT INTO ingredient (ingr_name,description) VALUES ('leek',null);
  17. INSERT INTO ingredient (ingr_name,description) VALUES ('lemon',null);
  18. INSERT INTO ingredient (ingr_name,description) VALUES ('lime',null);
  19. INSERT INTO ingredient (ingr_name,description) VALUES ('milk (cow)',null);
  20. INSERT INTO ingredient (ingr_name,description) VALUES ('milk (soy)',null);
  21. INSERT INTO ingredient (ingr_name,description) VALUES ('milk (rice)',null);
  22. INSERT INTO ingredient (ingr_name,description) VALUES ('mozzarella',null);
  23. INSERT INTO ingredient (ingr_name,description) VALUES ('mushroom (white)',null);
  24. INSERT INTO ingredient (ingr_name,description) VALUES ('olive oil (extra virgin)',null);
  25. INSERT INTO ingredient (ingr_name,description) VALUES ('parchment paper',null);
  26. INSERT INTO ingredient (ingr_name,description) VALUES ('Parmesan',null);
  27. INSERT INTO ingredient (ingr_name,description) VALUES ('pepper',null);
  28. INSERT INTO ingredient (ingr_name,description) VALUES ('porcini (dried)',null);
  29. INSERT INTO ingredient (ingr_name,description) VALUES ('salt',null);
  30. INSERT INTO ingredient (ingr_name,description) VALUES ('vinegar (balsamic)',null);
  31. INSERT INTO ingredient (ingr_name,description) VALUES ('vinegar (champagne)',null);
  32. INSERT INTO ingredient (ingr_name,description) VALUES ('vinegar (red wine)',null);
  33. INSERT INTO ingredient (ingr_name,description) VALUES ('water',null);
  34. INSERT INTO ingredient (ingr_name,description) VALUES ('wine (white)',null);
  35. INSERT INTO ingredient (ingr_name,description) VALUES ('wine (red)',null);