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

@@ -128,6 +128,7 @@ model ServerMonitoringNotification {
memoryLimit Float
diskLimit Float
temperatureLimit Float
notificationText String
@@map("server_monitoring_notifications")
}
@@ -136,6 +137,7 @@ model ApplicationMonitoringNotification {
id Int @id @default(autoincrement())
statusChange Boolean
latencyLimit Float
notificationText String
@@map("application_monitoring_notifications")
}