Projektstart
This commit is contained in:
41
backend/node_modules/.prisma/client/schema.prisma
generated
vendored
41
backend/node_modules/.prisma/client/schema.prisma
generated
vendored
@@ -68,6 +68,7 @@ model ExportJob {
|
||||
status ExportStatus @default(QUEUED)
|
||||
format String
|
||||
scope String
|
||||
progress Int @default(0)
|
||||
filePath String?
|
||||
error String?
|
||||
expiresAt DateTime?
|
||||
@@ -93,25 +94,27 @@ model User {
|
||||
}
|
||||
|
||||
model MailboxAccount {
|
||||
id String @id @default(cuid())
|
||||
tenantId String
|
||||
email String
|
||||
provider MailProvider
|
||||
isActive Boolean @default(true)
|
||||
imapHost String
|
||||
imapPort Int
|
||||
imapTLS Boolean
|
||||
smtpHost String?
|
||||
smtpPort Int?
|
||||
smtpTLS Boolean?
|
||||
oauthToken String?
|
||||
oauthRefreshToken String?
|
||||
oauthAccessToken String?
|
||||
oauthExpiresAt DateTime?
|
||||
providerUserId String?
|
||||
appPassword String?
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
id String @id @default(cuid())
|
||||
tenantId String
|
||||
email String
|
||||
provider MailProvider
|
||||
isActive Boolean @default(true)
|
||||
imapHost String
|
||||
imapPort Int
|
||||
imapTLS Boolean
|
||||
smtpHost String?
|
||||
smtpPort Int?
|
||||
smtpTLS Boolean?
|
||||
oauthToken String?
|
||||
oauthRefreshToken String?
|
||||
oauthAccessToken String?
|
||||
oauthExpiresAt DateTime?
|
||||
providerUserId String?
|
||||
oauthLastCheckedAt DateTime?
|
||||
oauthLastErrorCode String?
|
||||
appPassword String?
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
|
||||
tenant Tenant @relation(fields: [tenantId], references: [id])
|
||||
folders MailboxFolder[]
|
||||
|
||||
Reference in New Issue
Block a user