Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 340 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 340 Bytes

Used to fetch data from TheCocktailDB and parse it into a more workable structure.

The current code will add some duplicates. Run these SQL queries to remove:

DELETE
FROM "Cocktail" A USING "Cocktail" B
WHERE A.name = B.name AND A.id < B.id

DELETE
FROM "Ingredient"
WHERE "cocktailId" IS NULL