Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
0-don committed Feb 18, 2024
1 parent f9bbe08 commit 67145d1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion server/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,11 @@ const seedWeeklyMealGroups = async () => {
description: faker.lorem.sentence(),
mealBoardPlanId: mealBoardPlan.id,
timeOfDay: timeOfDays[randomInt(0, timeOfDays.length - 1)],
color: faker.internet.color(),
color: faker.internet.color({
redBase: 100,
greenBase: 100,
blueBase: 100,
}),
weekOfYear: week,
orderIndex: groupIndex,
year,
Expand Down

0 comments on commit 67145d1

Please sign in to comment.