From 0927b86831bb8dd1d88c5c346827bf83f5890d9f Mon Sep 17 00:00:00 2001 From: Alex Johansson Date: Mon, 11 Oct 2021 11:30:09 +0200 Subject: [PATCH] Revert "Makes fields with default values non-optional (#892)" (#899) This reverts commit bcf20914d300dfa635b1ae0f01b4f34d4443f5bb. --- prisma/schema.prisma | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 575b440480..ffe55f7ccb 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -16,12 +16,6 @@ enum SchedulingType { COLLECTIVE @map("collective") } -enum PeriodType { - unlimited - rolling - range -} - model EventType { id Int @id @default(autoincrement()) title String @@ -39,7 +33,7 @@ model EventType { eventName String? customInputs EventTypeCustomInput[] timeZone String? - periodType PeriodType @default(unlimited) // unlimited | rolling | range + periodType String? @default("unlimited") // unlimited | rolling | range periodStartDate DateTime? periodEndDate DateTime? periodDays Int? @@ -49,8 +43,8 @@ model EventType { minimumBookingNotice Int @default(120) schedulingType SchedulingType? Schedule Schedule[] - price Int @default(0) - currency String @default("usd") + price Int @default(0) + currency String @default("usd") @@unique([userId, slug]) } @@ -72,13 +66,13 @@ model User { id Int @id @default(autoincrement()) username String? @unique name String? - email String @unique + email String? @unique emailVerified DateTime? password String? bio String? avatar String? timeZone String @default("Europe/London") - weekStart String @default("Sunday") + weekStart String? @default("Sunday") startTime Int @default(0) endTime Int @default(1440) bufferTime Int @default(0) @@ -91,7 +85,7 @@ model User { bookings Booking[] availability Availability[] selectedCalendars SelectedCalendar[] - completedOnboarding Boolean @default(false) + completedOnboarding Boolean? @default(false) locale String? twoFactorSecret String? twoFactorEnabled Boolean @default(false)