Skip to content

Commit

Permalink
updated seed.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
SeansC12 committed Dec 10, 2024
1 parent e240377 commit c4315af
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,15 @@ async function seed() {
data: {
title: "My first todo page",
userId: user.id,
createdAt: new Date(),
},
});

const todoPage2 = await prisma.todoPage.create({
data: {
title: "My second to do page",
userId: user.id,
createdAt: new Date(),
},
});

Expand Down

0 comments on commit c4315af

Please sign in to comment.