# Test Data
## User
insert into user (username, password) values ('test', 'test');
insert into user (username, password) values ('test1', 'test1');
insert into user (username, password) values ('test2', 'test2');
## Product
insert into product (user_id, name, description, category, image, start_time, end_time, start_price) values (1, 'Slub jersey T-shirt', 'Slub jersey T-shirt', 'Clothing', 'https://images.unsplash.com/photo-1620799139507-2a76f79a2f4d?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=966&q=80', '2022-05-30', '2022-07-29', 100);
insert into product (user_id, name, description, category, image, start_time, end_time, start_price) values (1, 'T-shirt with a motif', 'T-shirt with a motif', 'Clothing', 'https://images.unsplash.com/photo-1620799139507-2a76f79a2f4d?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=966&q=80', '2022-05-30', '2022-07-29', 1000);
insert into product (user_id, name, description, category, image, start_time, end_time, start_price) values (1, 'Art T-shirt', 'Art T-shirt', 'Clothing', 'https://images.unsplash.com/photo-1603320410149-db26b12d5c2b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=634&q=80', '2022-06-05', '2022-07-29', 10000);
insert into product (user_id, name, description, category, image, start_time, end_time, start_price) values (1, 'Gumby Plush Filled', 'Gumby Plush Filled Dog Toy', 'Toys', 'https://m.media-amazon.com/images/I/815cr7khcEL._AC_SX679_.jpg', '2022-06-03', '2022-07-29', 10);
insert into product (user_id, name, description, category, image, start_time, end_time, start_price) values (1, 'Soul Superstars', 'Soul Superstars', 'CDs, DVDs, Games', 'https://m.media-amazon.com/images/I/81xcOPYohBL._SX425_.jpg', '2022-06-03', '2022-07-29', 222);
insert into product (user_id, name, description, category, image, start_time, end_time, start_price) values (1, 'H20 REMOOVE', 'H20 REMOOVE', 'Health & Fitness', 'https://m.media-amazon.com/images/I/51LL8OeTNNL._AC_SY879_.jpg', '2022-06-03', '2022-07-29', 34);
## Watchlist
insert into watchlist(user_id, product_id) values(2, 1);
insert into watchlist(user_id, product_id) values(2, 2);
insert into watchlist(user_id, product_id) values(2, 3);