mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-29 16:14:43 +00:00
13 lines
587 B
SQL
13 lines
587 B
SQL
/*
|
|
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;
|