Skip to content

Commit

Permalink
Add some demo products
Browse files Browse the repository at this point in the history
  • Loading branch information
tatut committed Sep 11, 2017
1 parent f9070f5 commit c0002d8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions resources/database.sql
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ VALUES ('Toys','All sorts of toys for children and childish adults.'),
('Doomsday devices', 'Sometimes you just want to watch the world burn and we have just the items for you!');

INSERT INTO product (name, description, price)
VALUES ('Illudium Q-36 Explosive Space Modulator', 'Pesky planets obstructing your view? Just blow them up with this handy space modulator!', 95990.50);
VALUES ('Illudium Q-36 Explosive Space Modulator', 'Pesky planets obstructing your view? Just blow them up with this handy space modulator!', 95990.50),
('Log! from Blammo', 'It''s log, it''s log, it''s big, it''s heavy, it''s wood.', 19.95),
('Don''t whizz on the electric fence!', 'Fun board game for the whole family.', 59.50),
('Fine leather jacket', 'I''m selling these fine leather jackets.', 500.0);

INSERT INTO product_category (product_id, category_id)
VALUES (1, 3);
VALUES (1, 3), (2, 1), (3, 1), (4, 2);

0 comments on commit c0002d8

Please sign in to comment.