File size: 18,878 Bytes
1067b6f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 | -- team_seed.sql (clean version)
USE onestopshop;
DELETE FROM products;
DELETE FROM stores;
-- ======================
-- STORES
-- ======================
INSERT INTO stores (store_name, industry, description, slug)
VALUES
('FreshMart', 'Groceries', 'Your friendly neighborhood grocery store.', 'freshmart'),
('GreenBasket', 'Groceries', 'Organic and sustainable groceries delivered to you.', 'greenbasket'),
('TechZone', 'Electronics', 'Latest gadgets, phones and accessories.', 'techzone'),
('StyleHub', 'Fashion', 'Trendy clothing and everyday essentials.', 'stylehub'),
('HomeEssentials', 'Home & Kitchen', 'Everything your home needs.', 'home-essentials')
ON DUPLICATE KEY UPDATE
store_name = VALUES(store_name),
industry = VALUES(industry),
description = VALUES(description);
-- ======================
-- FRESHMART PRODUCTS (Groceries)
-- ======================
INSERT INTO products (name, price, description, inventory, images, store_id)
VALUES
(
'Organic Bananas',
2.99,
'Ripe organic bananas, sold per bunch.',
100,
'[{"id":"banana-1","url":"https://images.unsplash.com/photo-1571771894821-ce9b6c11b08e?auto=format&fit=crop&w=800&q=80","alt":"Organic bananas"}]',
(SELECT id FROM stores WHERE slug = 'freshmart')
),
(
'Whole Milk 2L',
4.49,
'Fresh whole milk, 2 litre bottle.',
80,
'[{"id":"milk-1","url":"https://images.unsplash.com/photo-1550583724-b2692b85b150?auto=format&fit=crop&w=800&q=80","alt":"Bottle of milk"}]',
(SELECT id FROM stores WHERE slug = 'freshmart')
),
(
'Free-Range Eggs (12 pack)',
5.29,
'Large free-range brown eggs, pack of 12.',
15,
'[{"id":"eggs-1","url":"https://images.unsplash.com/photo-1585355611444-06154f329e96?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Eggs in carton"}]',
(SELECT id FROM stores WHERE slug = 'freshmart')
),
(
'Sourdough Bread Loaf',
3.99,
'Crusty sourdough bread loaf, baked daily.',
0,
'[{"id":"bread-1","url":"https://images.unsplash.com/photo-1608198093002-ad4e005484ec?auto=format&fit=crop&w=800&q=80","alt":"Sourdough bread"}]',
(SELECT id FROM stores WHERE slug = 'freshmart')
),
(
'Granny Smith Apples (1kg)',
4.99,
'Crisp and tart green apples, 1kg bag.',
50,
'[{"id":"apple-1","url":"https://images.unsplash.com/photo-1665242922574-e549f89538ab?q=80&w=1035&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Green apples"}]',
(SELECT id FROM stores WHERE slug = 'freshmart')
),
(
'Carrots 1kg',
2.49,
'Fresh orange carrots, 1kg bag.',
75,
'[{"id":"carrot-1","url":"https://images.unsplash.com/photo-1598170845058-32b9d6a5da37?q=80&w=987&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Carrots"}]',
(SELECT id FROM stores WHERE slug = 'freshmart')
);
-- ======================
-- GREENBASKET PRODUCTS (Groceries)
-- ======================
INSERT INTO products (name, price, description, inventory, images, store_id)
VALUES
(
'Organic Spinach 250g',
3.99,
'Fresh organic spinach leaves, 250g bag.',
70,
'[{"id":"spinach-1","url":"https://images.unsplash.com/photo-1576045057995-568f588f82fb?q=80&w=1480&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Organic spinach"}]',
(SELECT id FROM stores WHERE slug = 'greenbasket')
),
(
'Cherry Tomatoes 500g',
4.49,
'Sweet cherry tomatoes, 500g punnet.',
90,
'[{"id":"tomato-1","url":"https://images.unsplash.com/photo-1615840977596-a68240c14d03?q=80&w=987&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Cherry tomatoes"}]',
(SELECT id FROM stores WHERE slug = 'greenbasket')
),
(
'Avocado (2 pack)',
3.79,
'Two ripe Hass avocados.',
12,
'[{"id":"avocado-1","url":"https://images.unsplash.com/photo-1704960961383-67dd63756199?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Avocados"}]',
(SELECT id FROM stores WHERE slug = 'greenbasket')
),
(
'Kale Bunch',
2.99,
'Curly kale, great for salads and smoothies.',
30,
'[{"id":"kale-1","url":"https://images.unsplash.com/photo-1522193582792-c66cf1cddd16?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Kale bunch"}]',
(SELECT id FROM stores WHERE slug = 'greenbasket')
),
(
'Brown Rice 1kg',
4.29,
'Whole grain brown rice, 1kg bag.',
0,
'[{"id":"rice-1","url":"https://images.unsplash.com/photo-1747518596416-2da5e5218d83?q=80&w=1035&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Brown rice"}]',
(SELECT id FROM stores WHERE slug = 'greenbasket')
),
(
'Almonds 200g',
5.99,
'Raw whole almonds, 200g.',
25,
'[{"id":"almonds-1","url":"https://images.unsplash.com/photo-1608797178974-15b35a64ede9?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Almonds"}]',
(SELECT id FROM stores WHERE slug = 'greenbasket')
);
-- ======================
-- TECHZONE PRODUCTS (Electronics)
-- ======================
INSERT INTO products (name, price, description, inventory, images, store_id)
VALUES
(
'Wireless Headphones',
89.99,
'Over-ear wireless headphones with noise cancellation.',
40,
'[{"id":"headphones-1","url":"https://images.unsplash.com/photo-1546435770-a3e426bf472b?q=80&w=2065&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Wireless headphones"}]',
(SELECT id FROM stores WHERE slug = 'techzone')
),
(
'Mechanical Keyboard',
119.00,
'Compact mechanical keyboard with RGB lighting.',
30,
'[{"id":"keyboard-1","url":"https://images.unsplash.com/photo-1602025882379-e01cf08baa51?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Mechanical keyboard"}]',
(SELECT id FROM stores WHERE slug = 'techzone')
),
(
'Wireless Mouse',
29.99,
'Ergonomic wireless mouse with silent clicks.',
75,
'[{"id":"mouse-1","url":"https://images.unsplash.com/photo-1739742473235-34a7bd9b8f87?q=80&w=987&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Wireless mouse"}]',
(SELECT id FROM stores WHERE slug = 'techzone')
),
(
'27-inch 4K Monitor',
329.00,
'Ultra HD 4K monitor, ideal for work and gaming.',
10,
'[{"id":"monitor-1","url":"https://images.unsplash.com/photo-1570485071395-29b575ea3b4e?q=80&w=1480&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"4K monitor"}]',
(SELECT id FROM stores WHERE slug = 'techzone')
),
(
'Laptop Stand',
34.99,
'Adjustable aluminum laptop stand.',
60,
'[{"id":"stand-1","url":"https://images.unsplash.com/photo-1629317480826-910f729d1709?q=80&w=1674&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Laptop stand"}]',
(SELECT id FROM stores WHERE slug = 'techzone')
),
(
'Portable SSD 1TB',
129.99,
'High-speed portable SSD, 1TB capacity.',
0,
'[{"id":"ssd-1","url":"https://images.unsplash.com/photo-1721333084686-e13de2ef7247?q=80&w=1035&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Portable SSD"}]',
(SELECT id FROM stores WHERE slug = 'techzone')
);
-- ======================
-- STYLEHUB PRODUCTS (Fashion)
-- ======================
INSERT INTO products (name, price, description, inventory, images, store_id)
VALUES
(
'Basic White T-Shirt',
14.99,
'Unisex cotton t-shirt, classic fit.',
120,
'[{"id":"tshirt-1","url":"https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?q=80&w=1480&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"White t-shirt"}]',
(SELECT id FROM stores WHERE slug = 'stylehub')
),
(
'Blue Denim Jeans',
49.99,
'Straight-leg blue denim jeans.',
60,
'[{"id":"jeans-1","url":"https://images.unsplash.com/photo-1533108676735-30c9bb43fda3?q=80&w=987&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Denim jeans"}]',
(SELECT id FROM stores WHERE slug = 'stylehub')
),
(
'Black Hoodie',
39.99,
'Cozy black hoodie with front pocket.',
80,
'[{"id":"hoodie-1","url":"https://images.unsplash.com/photo-1513789181297-6f2ec112c0bc?q=80&w=988&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Black hoodie"}]',
(SELECT id FROM stores WHERE slug = 'stylehub')
),
(
'White Sneakers',
69.99,
'Minimalist white sneakers for everyday wear.',
45,
'[{"id":"sneakers-1","url":"https://images.unsplash.com/photo-1544441892-794166f1e3be?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"White sneakers"}]',
(SELECT id FROM stores WHERE slug = 'stylehub')
),
(
'Blue Denim Jacket',
79.99,
'Classic denim jacket in blue wash.',
20,
'[{"id":"jacket-1","url":"https://images.unsplash.com/photo-1587155471946-9e8d4d1132fa?q=80&w=987&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Denim jacket"}]',
(SELECT id FROM stores WHERE slug = 'stylehub')
),
(
'Black Dress',
89.99,
'Classic little black dress.',
0,
'[{"id":"dress-1","url":"https://images.unsplash.com/photo-1599662875272-64de8289f6d8?q=80&w=987&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Black dress"}]',
(SELECT id FROM stores WHERE slug = 'stylehub')
);
-- ======================
-- HOMEESSENTIALS PRODUCTS (Home & Kitchen)
-- ======================
INSERT INTO products (name, price, description, inventory, images, store_id)
VALUES
(
'Ceramic Coffee Mug',
9.99,
'350ml ceramic coffee mug, dishwasher safe.',
150,
'[{"id":"mug-1","url":"https://images.unsplash.com/photo-1616241673111-508b4662c707?q=80&w=1102&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Coffee mug"}]',
(SELECT id FROM stores WHERE slug = 'home-essentials')
),
(
'Cotton Bath Towel',
19.99,
'Soft cotton bath towel, 70x140cm.',
100,
'[{"id":"towel-1","url":"https://images.unsplash.com/photo-1639298109207-5a9ccc254481?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Bath towel"}]',
(SELECT id FROM stores WHERE slug = 'home-essentials')
),
(
'Scented Candle',
12.99,
'Lavender scented soy candle, 40h burn time.',
80,
'[{"id":"candle-1","url":"https://images.unsplash.com/photo-1603905179139-db12ab535ca9?q=80&w=1037&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Scented candle"}]',
(SELECT id FROM stores WHERE slug = 'home-essentials')
),
(
'Non-stick Frying Pan 28cm',
34.99,
'Non-stick frying pan with ergonomic handle.',
40,
'[{"id":"pan-1","url":"https://images.unsplash.com/photo-1592156328697-079f6ee0cfa5?q=80&w=1480&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Frying pan"}]',
(SELECT id FROM stores WHERE slug = 'home-essentials')
),
(
'Glass Food Containers (Set of 5)',
39.99,
'Glass containers with airtight lids.',
25,
'[{"id":"container-1","url":"https://images.unsplash.com/photo-1569420077790-afb136b3bb8c?q=80&w=2089&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Glass containers"}]',
(SELECT id FROM stores WHERE slug = 'home-essentials')
),
(
'Throw Blanket',
24.99,
'Soft and cozy throw blanket.',
0,
'[{"id":"blanket-1","url":"https://images.unsplash.com/photo-1600369672770-985fd30004eb?q=80&w=1117&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Throw blanket"}]',
(SELECT id FROM stores WHERE slug = 'home-essentials')
);
INSERT INTO products (name, price, description, inventory, images, store_id)
VALUES
(
'Grain-free kitten food',
32.99,
'Food for kittens',
30,
'[{"id":"banana-1","url":"https://images.unsplash.com/photo-1571771894821-ce9b6c11b08e?auto=format&fit=crop&w=800&q=80","alt":"Organic bananas"}]',
(SELECT id FROM stores WHERE slug = 'freshmart')
),
(
'Whole Milk 2L',
4.49,
'Fresh whole milk, 2 litre bottle.',
80,
'[{"id":"milk-1","url":"https://images.unsplash.com/photo-1550583724-b2692b85b150?auto=format&fit=crop&w=800&q=80","alt":"Bottle of milk"}]',
(SELECT id FROM stores WHERE slug = 'freshmart')
),
(
'Free-Range Eggs (12 pack)',
5.29,
'Large free-range brown eggs, pack of 12.',
15,
'[{"id":"eggs-1","url":"https://images.unsplash.com/photo-1585355611444-06154f329e96?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Eggs in carton"}]',
(SELECT id FROM stores WHERE slug = 'freshmart')
),
(
'Sourdough Bread Loaf',
3.99,
'Crusty sourdough bread loaf, baked daily.',
0,
'[{"id":"bread-1","url":"https://images.unsplash.com/photo-1608198093002-ad4e005484ec?auto=format&fit=crop&w=800&q=80","alt":"Sourdough bread"}]',
(SELECT id FROM stores WHERE slug = 'freshmart')
),
(
'Granny Smith Apples (1kg)',
4.99,
'Crisp and tart green apples, 1kg bag.',
50,
'[{"id":"apple-1","url":"https://images.unsplash.com/photo-1665242922574-e549f89538ab?q=80&w=1035&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Green apples"}]',
(SELECT id FROM stores WHERE slug = 'freshmart')
),
(
'Carrots 1kg',
2.49,
'Fresh orange carrots, 1kg bag.',
75,
'[{"id":"carrot-1","url":"https://images.unsplash.com/photo-1598170845058-32b9d6a5da37?q=80&w=987&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Carrots"}]',
(SELECT id FROM stores WHERE slug = 'freshmart')
);
INSERT INTO stores (store_name, industry, description, slug)
VALUES
(
'HappyPaws',
'Pet Supplies',
'Everything your dog or cat needs – food, treats, toys and more.',
'happypaws'
)
ON DUPLICATE KEY UPDATE
store_name = VALUES(store_name),
industry = VALUES(industry),
description = VALUES(description);
-- HappyPaws Pet Supply products
INSERT INTO products (name, price, description, inventory, images, store_id)
VALUES
(
'Grain-Free Dog Kibble 5kg',
42.99,
'High-protein grain-free kibble for adult dogs, 5kg bag.',
25,
'[{"id":"dogfood-1","url":"https://images.unsplash.com/photo-1714068691210-073dc52c6c1d?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Dog kibble in a bowl"}]',
(SELECT id FROM stores WHERE slug = 'happypaws')
),
(
'Indoor Cat Chicken Recipe 2kg',
24.49,
'Complete dry food for indoor cats, chicken flavour, 2kg.',
40,
'[{"id":"catfood-1","url":"https://images.unsplash.com/photo-1655210913315-e8147faf7600?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Cat eating from a bowl"}]',
(SELECT id FROM stores WHERE slug = 'happypaws')
),
(
'Clumping Cat Litter 10L',
18.99,
'Low-dust clumping litter with odour control, 10L bag.',
12,
'[{"id":"litter-1","url":"https://images.unsplash.com/photo-1727510160238-3c17eb5e6120?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Cat in litter box"}]',
(SELECT id FROM stores WHERE slug = 'happypaws')
),
(
'Rope Tug Toy (Medium Dogs)',
9.99,
'Durable rope tug toy, ideal for medium-size dogs.',
60,
'[{"id":"rope-1","url":"https://images.unsplash.com/photo-1561920110-d03675bdddbf?q=80&w=1035&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Dog with rope toy"}]',
(SELECT id FROM stores WHERE slug = 'happypaws')
),
(
'Catnip Mouse Toy (3-pack)',
7.49,
'Soft fabric mouse toys filled with catnip, pack of 3.',
100,
'[{"id":"mouse-1","url":"https://images.unsplash.com/photo-1579272602151-d8db35b9468e?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Cat playing with toy mouse"}]',
(SELECT id FROM stores WHERE slug = 'happypaws')
),
(
'Reflective Dog Leash 1.5m',
14.99,
'Nylon leash with reflective stitching and padded handle.',
35,
'[{"id":"leash-1","url":"https://images.unsplash.com/photo-1622532305807-e44152333057?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Dog on a leash"}]',
(SELECT id FROM stores WHERE slug = 'happypaws')
),
(
'Scratching Post Tower',
59.99,
'Multi-level scratching post with perch and hiding spot.',
8,
'[{"id":"scratch-1","url":"https://images.unsplash.com/photo-1636543459635-4a2b0e8704de?q=80&w=987&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Cat on scratching post"}]',
(SELECT id FROM stores WHERE slug = 'happypaws')
),
(
'Stainless Steel Pet Bowl (Set of 2)',
15.49,
'Non-slip stainless steel bowls, suitable for food and water.',
50,
'[{"id":"bowl-1","url":"https://images.unsplash.com/photo-1695023267262-7f4ab64152b2?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Pet food bowl"}]',
(SELECT id FROM stores WHERE slug = 'happypaws')
),
(
'Salmon Training Treats 200g',
6.99,
'Soft bite-size salmon treats, perfect for training sessions.',
0,
'[{"id":"treats-1","url":"https://images.unsplash.com/photo-1554530700-747e22bb4e56?q=80&w=1002&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D","alt":"Dog treats in a bowl"}]',
(SELECT id FROM stores WHERE slug = 'happypaws')
);
|