We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d1a92b commit fba51b9Copy full SHA for fba51b9
prisma/seed.ts
@@ -116,7 +116,10 @@ async function seed() {
116
name: 'Kody',
117
password: { create: createPassword('kodylovesyou') },
118
connections: {
119
- create: { providerName: 'github', providerId: githubUser.profile.id },
+ create: {
120
+ providerName: 'github',
121
+ providerId: String(githubUser.profile.id),
122
+ },
123
},
124
roles: { connect: [{ name: 'admin' }, { name: 'user' }] },
125
0 commit comments