Add notification_text column to settings model in Prisma schema and migration

This commit is contained in:
headlessdev 2025-04-17 16:51:15 +02:00
parent b9fac8ddb6
commit 88f7f6a9d1
2 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "settings" ADD COLUMN "notification_text" TEXT;

View File

@ -47,6 +47,7 @@ model server {
model settings {
id Int @id @default(autoincrement())
uptime_checks Boolean @default(true)
notification_text String?
}
model user {