CrustyCookiesAPI/app/Migrations/initial-data.sql

45 lines
1.2 KiB
MySQL
Raw Normal View History

2024-04-22 14:07:00 +02:00
-- Inserts here
2024-05-03 08:34:18 +02:00
INSERT
OR IGNORE INTO customers (customer_id, customer_name, customer_address)
2024-05-03 05:30:52 +02:00
VALUES
(1, 'Bjudkakor AB', 'Ystad'),
(2, 'Finkakor AB', 'Helsingborg'),
(3, 'Gästkakor AB', 'Hässleholm'),
(4, 'Kaffebröd AB', 'Landskrona'),
(5, 'Kalaskakor AB', 'Trelleborg'),
(6, 'Partykakor AB', 'Kristianstad'),
(7, 'Skånekakor AB', 'Perstorp'),
(8, 'Småbröd AB', 'Malmö');
2024-05-03 08:34:18 +02:00
INSERT
OR IGNORE INTO recipes (recipe_name)
2024-05-03 05:30:52 +02:00
VALUES
('Nut ring'),
('Nut cookie'),
('Amneris'),
('Tango'),
('Almond delight'),
2024-05-03 08:34:18 +02:00
('Berliner');
INSERT
OR IGNORE INTO ingredients (ingredient_name, amount, unit)
VALUES
('Bread crumbs', 500000, 'g'),
('Butter', 500000, 'g'),
('Chocolate', 500000, 'g'),
('Chopped almonds', 500000, 'g'),
('Cinnamon', 500000, 'g'),
('Egg whites', 500000, 'ml'),
('Eggs', 500000, 'g'),
('Fine-ground nuts', 500000, 'g'),
('Flour', 500000, 'g'),
('Ground, roasted nuts', 500000, 'g'),
('Icing sugar', 500000, 'g'),
('Marzipan', 500000, 'g'),
('Potato starch', 500000, 'g'),
('Roasted, chopped nuts', 500000, 'g'),
('Sodium bicarbonate', 500000, 'g'),
('Sugar', 500000, 'g'),
('Vanilla', 500000, 'g'),
('Vanilla sugar', 500000, 'g'),
('Wheat flour', 500000, 'g');