pushover settings in notifcations model

This commit is contained in:
headlessdev 2025-04-21 15:27:40 +02:00
parent ce9bdadb69
commit e0c159cb71
3 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,3 @@
-- AlterTable
ALTER TABLE "notification" ADD COLUMN "pushoverToken" TEXT,
ADD COLUMN "pushoverUser" TEXT;

View File

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "notification" ADD COLUMN "pushoverUrl" TEXT;

View File

@ -94,4 +94,7 @@ model notification {
gotifyToken String? gotifyToken String?
ntfyUrl String? ntfyUrl String?
ntfyToken String? ntfyToken String?
pushoverUrl String?
pushoverToken String?
pushoverUser String?
} }