mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-17 15:36:50 +00:00
Add test_notification model to Prisma schema
This commit is contained in:
parent
ece4041c74
commit
825b25a60b
@ -0,0 +1,7 @@
|
|||||||
|
-- CreateTable
|
||||||
|
CREATE TABLE "test_notification" (
|
||||||
|
"id" SERIAL NOT NULL,
|
||||||
|
"notificationId" INTEGER NOT NULL,
|
||||||
|
|
||||||
|
CONSTRAINT "test_notification_pkey" PRIMARY KEY ("id")
|
||||||
|
);
|
||||||
@ -97,4 +97,9 @@ model notification {
|
|||||||
pushoverUrl String?
|
pushoverUrl String?
|
||||||
pushoverToken String?
|
pushoverToken String?
|
||||||
pushoverUser String?
|
pushoverUser String?
|
||||||
}
|
}
|
||||||
|
|
||||||
|
model test_notification {
|
||||||
|
id Int @id @default(autoincrement())
|
||||||
|
notificationId Int
|
||||||
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user