Skip to content

Commit

Permalink
docs(recipes): remove extra field for drizzle seed
Browse files Browse the repository at this point in the history
  • Loading branch information
atinux authored Jun 20, 2024
1 parent bb5d3f2 commit a8a8b01
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions docs/content/1.docs/4.recipes/2.drizzle.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,16 +188,14 @@ export default defineTask({
email: 'john@example.com',
password: 'password123',
avatar: 'https://example.com/avatar/john.png',
createdAt: new Date(),
role: 'admin'
createdAt: new Date()
},
{
name: 'Jane Doe',
email: 'jane@example.com',
password: 'password123',
avatar: 'https://example.com/avatar/jane.png',
createdAt: new Date(),
role: 'admin'
createdAt: new Date()
}
]
await useDrizzle().insert(tables.users).values(users)
Expand Down

0 comments on commit a8a8b01

Please sign in to comment.