From 87dcdec0441105aba9ff85321ee6f1a7363f172e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20L=C3=B3pez?= Date: Wed, 23 Mar 2022 19:13:04 -0700 Subject: [PATCH] Add various location events to seeder (#2259) Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- packages/prisma/seed.ts | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/packages/prisma/seed.ts b/packages/prisma/seed.ts index 74971784..d97a33a7 100644 --- a/packages/prisma/seed.ts +++ b/packages/prisma/seed.ts @@ -216,7 +216,6 @@ async function main() { username: "pro", plan: "PRO", }, - eventTypes: [ { title: "30min", @@ -249,6 +248,30 @@ async function main() { length: 60, price: 50, }, + { + title: "In person meeting", + slug: "in-person", + length: 60, + locations: [{ type: "inPerson", address: "London" }], + }, + { + title: "Zoom Event", + slug: "zoom", + length: 60, + locations: [{ type: "integrations:zoom" }], + }, + { + title: "Daily Event", + slug: "daily", + length: 60, + locations: [{ type: "integrations:daily" }], + }, + { + title: "Google Meet", + slug: "google-meet", + length: 60, + locations: [{ type: "integrations:google:meet" }], + }, ], });