Merge dev into main
This commit is contained in:
commit
018c52476e
@ -17,7 +17,6 @@ model User {
|
|||||||
emailVerified DateTime?
|
emailVerified DateTime?
|
||||||
verifiedAt DateTime?
|
verifiedAt DateTime?
|
||||||
emailVerificationToken String?
|
emailVerificationToken String?
|
||||||
emailVerificationCode String?
|
|
||||||
emailVerificationExpires DateTime?
|
emailVerificationExpires DateTime?
|
||||||
passwordResetToken String?
|
passwordResetToken String?
|
||||||
passwordResetExpires DateTime?
|
passwordResetExpires DateTime?
|
||||||
@ -39,7 +38,6 @@ model User {
|
|||||||
showSomeday Boolean @default(true)
|
showSomeday Boolean @default(true)
|
||||||
showAllDayEvents Boolean @default(true)
|
showAllDayEvents Boolean @default(true)
|
||||||
showSchedule Boolean @default(true)
|
showSchedule Boolean @default(true)
|
||||||
showTaskCheckboxes Boolean @default(false)
|
|
||||||
cellDuration Int @default(30)
|
cellDuration Int @default(30)
|
||||||
viewStyle String @default("grid")
|
viewStyle String @default("grid")
|
||||||
viewDays Int @default(7)
|
viewDays Int @default(7)
|
||||||
@ -87,6 +85,8 @@ model User {
|
|||||||
yearFontFamily String? @default("Inter")
|
yearFontFamily String? @default("Inter")
|
||||||
yearFontSize String? @default("1.125rem")
|
yearFontSize String? @default("1.125rem")
|
||||||
yearFontWeight String? @default("700")
|
yearFontWeight String? @default("700")
|
||||||
|
showTaskCheckboxes Boolean @default(false)
|
||||||
|
emailVerificationCode String?
|
||||||
accounts Account[]
|
accounts Account[]
|
||||||
cachedCalendarEvents CachedCalendarEvent[]
|
cachedCalendarEvents CachedCalendarEvent[]
|
||||||
calendarConnections CalendarConnection[]
|
calendarConnections CalendarConnection[]
|
||||||
@ -142,7 +142,6 @@ model Task {
|
|||||||
dayOfWeek Int?
|
dayOfWeek Int?
|
||||||
scheduledDate DateTime?
|
scheduledDate DateTime?
|
||||||
somedayListId String?
|
somedayListId String?
|
||||||
somedaySlotIndex Int?
|
|
||||||
originalDate DateTime?
|
originalDate DateTime?
|
||||||
startTime String?
|
startTime String?
|
||||||
endTime String?
|
endTime String?
|
||||||
@ -159,6 +158,7 @@ model Task {
|
|||||||
lastSyncedAt DateTime?
|
lastSyncedAt DateTime?
|
||||||
deletedAt DateTime?
|
deletedAt DateTime?
|
||||||
parentTaskId String?
|
parentTaskId String?
|
||||||
|
somedaySlotIndex Int?
|
||||||
parent Task? @relation("SubTasks", fields: [parentTaskId], references: [id], onDelete: Cascade)
|
parent Task? @relation("SubTasks", fields: [parentTaskId], references: [id], onDelete: Cascade)
|
||||||
subTasks Task[] @relation("SubTasks")
|
subTasks Task[] @relation("SubTasks")
|
||||||
somedayList SomedayList? @relation(fields: [somedayListId], references: [id])
|
somedayList SomedayList? @relation(fields: [somedayListId], references: [id])
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user