Add notificationText field to Server and Application Monitoring Notifications

This commit is contained in:
headlesdev
2025-05-25 22:45:35 +02:00
parent d51422e2a4
commit dc7280126d
9 changed files with 104 additions and 22 deletions

View File

@@ -0,0 +1,12 @@
/*
Warnings:
- Added the required column `notificationText` to the `application_monitoring_notifications` table without a default value. This is not possible if the table is not empty.
- Added the required column `notificationText` to the `server_monitoring_notifications` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "application_monitoring_notifications" ADD COLUMN "notificationText" TEXT NOT NULL;
-- AlterTable
ALTER TABLE "server_monitoring_notifications" ADD COLUMN "notificationText" TEXT NOT NULL;