mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-29 16:14:43 +00:00
Add notificationText field to Server and Application Monitoring Notifications
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user