Projektstart

This commit is contained in:
2026-01-22 16:04:42 +01:00
parent 57e5f652f8
commit 5174b88af9
2716 changed files with 4225555 additions and 128 deletions

View File

@@ -0,0 +1,5 @@
-- AlterTable
ALTER TABLE "MailboxAccount" ADD COLUMN "oauthAccessToken" TEXT,
ADD COLUMN "oauthExpiresAt" TIMESTAMP(3),
ADD COLUMN "oauthRefreshToken" TEXT,
ADD COLUMN "providerUserId" TEXT;

View File

@@ -80,6 +80,10 @@ model MailboxAccount {
smtpPort Int?
smtpTLS Boolean?
oauthToken String?
oauthRefreshToken String?
oauthAccessToken String?
oauthExpiresAt DateTime?
providerUserId String?
appPassword String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt