Skip to content

Commit

Permalink
Husky added
Browse files Browse the repository at this point in the history
  • Loading branch information
ericminio committed Dec 3, 2010
1 parent c75c10e commit 56bed89
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions petstore-infrastructure/src/main/scripts/seeds/items.sql
Expand Up @@ -3,11 +3,13 @@ TRUNCATE products;

INSERT INTO `products` (`id`, `name`, `description`, `photo_file_name`, `number`) VALUES
(21, 'Reptiles', 'Cold-blooded friends', 'iguana.png', '60090989'),
(22, 'Dogs', "Our best friends", 'dog.png', '70080944');
(22, 'Labrador Retriever', 'Your best friend', 'dog.png', '70080944'),
(23, 'Husky', 'Perfect winter jogging partner', 'husky.jpg', '45454545');

INSERT INTO `items` (`id`, `number`, `product_id`, `description`, `price`) VALUES
(8, '12345678', 21, 'Green adult lizard', 18.50),
(9, '12345679', 21, 'Madagascar iguana', 37.95),
(10, '12345680', 21, 'Spiny tailed iguana', 49.99),
(11, '98765432', 22, 'Golden Retriever', 79.99),
(12, '98765433', 22, 'Labrador Retriever black male', 69.99);
(12, '98765433', 22, 'Labrador Retriever black male', 69.99),
(13, '98765434', 23, '3 months Husky', 69.99);

0 comments on commit 56bed89

Please sign in to comment.