8000 docs(recipes): remove extra field for drizzle seed · nuxt-hub/core@a8a8b01 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit a8a8b01

Browse files
authored
docs(recipes): remove extra field for drizzle seed
1 parent bb5d3f2 commit a8a8b01

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

docs/content/1.docs/4.recipes/2.drizzle.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,16 +188,14 @@ export default defineTask({
188188
email: 'john@example.com',
189189
password: 'password123',
190190
avatar: 'https://example.com/avatar/john.png',
191-
createdAt: new Date(),
192-
role: 'admin'
191+
createdAt: new Date()
193192
},
194193
{
195194
name: 'Jane Doe',
196195
email: 'jane@example.com',
197196
password: 'password123',
198197
avatar: 'https://example.com/avatar/jane.png',
199-
createdAt: new Date(),
200-
role: 'admin'
198+
createdAt: new Date()
201199
}
202200
]
203201
await useDrizzle().insert(tables.users).values(users)

0 commit comments

Comments
 (0)
0