CrustyCookiesAPI/app/Migrations/initial-data.sql

22 lines
541 B
MySQL
Raw Normal View History

2024-04-22 14:07:00 +02:00
-- Inserts here
2024-05-03 08:16:21 +02:00
INSERT OR IGNORE INTO
2024-05-03 05:30:52 +02:00
customers (customer_id, customer_name, customer_address)
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ö');
INSERT INTO
2024-05-03 08:16:21 +02:00
recipes (recipe_name)
2024-05-03 05:30:52 +02:00
VALUES
('Nut ring'),
('Nut cookie'),
('Amneris'),
('Tango'),
('Almond delight'),
('Berliner');