Skip to content
Snippets Groups Projects
Commit fe6c0f2b authored by TERRU Theo's avatar TERRU Theo
Browse files

ajout recette bidons

parent 704a25ca
No related branches found
No related tags found
No related merge requests found
......@@ -33,15 +33,26 @@ CREATE TABLE robotise.composition (
);
INSERT INTO robotise.cocktail (nom_cocktail) VALUES ('sex on the beach');
INSERT INTO robotise.cocktail (nom_cocktail) VALUES ('mojito');
INSERT INTO robotise.cocktail (nom_cocktail) VALUES ('planteur');
INSERT INTO robotise.machine(id_bec, quantite) VALUES (0, NULL);
INSERT INTO robotise.machine(id_bec, quantite) VALUES (1, NULL);
INSERT INTO robotise.machine(id_bec, quantite) VALUES (2, NULL);
INSERT INTO robotise.machine(id_bec, quantite) VALUES (3, NULL);
INSERT INTO robotise.machine(id_bec, quantite) VALUES (4, NULL);
INSERT INTO robotise.machine(id_bec, quantite) VALUES (5, NULL);
INSERT INTO robotise.ingredient (id_bec, nom_ingredient) VALUES (1, 'vodka');
INSERT INTO robotise.ingredient (id_bec, nom_ingredient) VALUES (NULL, 'vodka');
INSERT INTO robotise.ingredient (id_bec, nom_ingredient) VALUES (NULL, 'rhum');
INSERT INTO robotise.ingredient (id_bec, nom_ingredient) VALUES (NULL, 'goyave');
INSERT INTO robotise.ingredient (id_bec, nom_ingredient) VALUES (NULL, 'citron');
INSERT INTO robotise.ingredient (id_bec, nom_ingredient) VALUES (2, 'ananas');
INSERT INTO robotise.ingredient (id_bec, nom_ingredient) VALUES (NULL, 'cramberry');
INSERT INTO robotise.composition (id_cocktail, id_ingredient, quantite) VALUES (1, 1, 3);
INSERT INTO robotise.composition (id_cocktail, id_ingredient, quantite) VALUES (1, 2, 6);
INSERT INTO robotise.composition (id_cocktail, id_ingredient, quantite) VALUES (1, 3, 10);
INSERT INTO robotise.composition (id_cocktail, id_ingredient, quantite) VALUES (2, 2, 10);
INSERT INTO robotise.composition (id_cocktail, id_ingredient, quantite) VALUES (2, 2, 10);
INSERT INTO robotise.composition (id_cocktail, id_ingredient, quantite) VALUES (2, 1, 10);
INSERT INTO robotise.composition (id_cocktail, id_ingredient, quantite) VALUES (3, 2, 10);
INSERT INTO robotise.composition (id_cocktail, id_ingredient, quantite) VALUES (3, 4, 10);
INSERT INTO robotise.composition (id_cocktail, id_ingredient, quantite) VALUES (3, 5, 10);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment