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

@ -0,0 +1,7 @@
-- CreateTable
CREATE TABLE "test_notification" (
"id" SERIAL NOT NULL,
"notificationId" INTEGER NOT NULL,
CONSTRAINT "test_notification_pkey" PRIMARY KEY ("id")
);

View File

@ -98,3 +98,8 @@ model notification {
pushoverToken String?
pushoverUser String?
}
model test_notification {
id Int @id @default(autoincrement())
notificationId Int
}