Add new fields for Gotify and ntfy integration in notification model

This commit is contained in:
headlessdev
2025-04-19 13:07:09 +02:00
parent 2a910c165e
commit 93bffa29cc
3 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
-- AlterTable
ALTER TABLE "notification" ADD COLUMN "gotifyToken" TEXT,
ADD COLUMN "gotifyUrl" TEXT,
ADD COLUMN "ntfyToken" TEXT,
ADD COLUMN "ntfyUrl" TEXT;

View File

@@ -72,4 +72,8 @@ model notification {
telegramChatId String?
telegramToken String?
discordWebhook String?
gotifyUrl String?
gotifyToken String?
ntfyUrl String?
ntfyToken String?
}