fix(seed): Remove invalid createdById from Task creation in seed.js
Some checks failed
Deploy to Production / deploy (push) Failing after 0s
Test / backend-test (push) Failing after 0s
Test / frontend-test (push) Failing after 0s

This commit is contained in:
fullsizemalt 2025-12-11 11:57:42 -08:00
parent 76703aa500
commit 0c970cadb7

View file

@ -316,7 +316,6 @@ async function main() {
await prisma.task.create({ await prisma.task.create({
data: { data: {
...t, ...t,
createdById: manager?.id,
assignedToId: cultivator?.id, assignedToId: cultivator?.id,
batchId: createdBatches[0]?.id batchId: createdBatches[0]?.id
} }