Closed alliebug closed 1 year ago
-seeds database with 50 customers, 1 admin, and 100 products -made sure product names are unique -probably need to change the code for seeding users because user model has not been completely set up
in line 52, why do we need the idx as part of the product name? name: faker.commerce.productName() + " " + idx,
name: faker.commerce.productName() + " " + idx,
because otherwise the product name will have repeats, but our model requires unique product names
-seeds database with 50 customers, 1 admin, and 100 products -made sure product names are unique -probably need to change the code for seeding users because user model has not been completely set up