Makes fields with default values non-optional (#892)
parent
fdd4bd2e14
commit
bcf20914d3
|
@ -16,6 +16,12 @@ enum SchedulingType {
|
|||
COLLECTIVE @map("collective")
|
||||
}
|
||||
|
||||
enum PeriodType {
|
||||
unlimited
|
||||
rolling
|
||||
range
|
||||
}
|
||||
|
||||
model EventType {
|
||||
id Int @id @default(autoincrement())
|
||||
title String
|
||||
|
@ -33,7 +39,7 @@ model EventType {
|
|||
eventName String?
|
||||
customInputs EventTypeCustomInput[]
|
||||
timeZone String?
|
||||
periodType String? @default("unlimited") // unlimited | rolling | range
|
||||
periodType PeriodType @default(unlimited) // unlimited | rolling | range
|
||||
periodStartDate DateTime?
|
||||
periodEndDate DateTime?
|
||||
periodDays Int?
|
||||
|
@ -66,13 +72,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)
|
||||
|
@ -85,7 +91,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)
|
||||
|
|
Loading…
Reference in New Issue