Add test_notification model to Prisma schema

This commit is contained in:
headlessdev
2025-04-23 21:04:43 +02:00
parent ece4041c74
commit 825b25a60b
2 changed files with 13 additions and 1 deletions

View File

@@ -97,4 +97,9 @@ model notification {
pushoverUrl String?
pushoverToken String?
pushoverUser String?
}
}
model test_notification {
id Int @id @default(autoincrement())
notificationId Int
}