We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a65817 commit 013f1f1Copy full SHA for 013f1f1
1 file changed
src/backend/src/prisma/seed.ts
@@ -3491,6 +3491,17 @@ const performSeed: () => Promise<void> = async () => {
3491
undefined,
3492
undefined
3493
);
3494
+
3495
+ /* Guest Definitions */
3496
+ const guestDef1 = await prisma.guest_Definition.create({
3497
+ data: {
3498
+ term: 'NER',
3499
+ description: 'A really awesome organization!',
3500
+ order: 0,
3501
+ organizationId,
3502
+ userCreatedId: batman.userId
3503
+ }
3504
+ });
3505
};
3506
3507
performSeed()
0 commit comments