diff --git a/db/knex_migrations/2023-10-26-slow-response-notification.js b/db/knex_migrations/2023-10-26-slow-response-notification.js index 0c33ff993..892703962 100644 --- a/db/knex_migrations/2023-10-26-slow-response-notification.js +++ b/db/knex_migrations/2023-10-26-slow-response-notification.js @@ -6,6 +6,7 @@ exports.up = function (knex) { table.integer("slow_response_notification_threshold").defaultTo(0); table.integer("slow_response_notification_range").defaultTo(0); table.string("slow_response_notification_method").defaultTo(""); + table.integer("slow_response_notification_resend_interval").defaultTo(0); }); } @@ -16,5 +17,6 @@ exports.down = function (knex) { table.integer("slow_response_notification_threshold").defaultTo(0); table.integer("slow_response_notification_range").defaultTo(0); table.string("slow_response_notification_method").defaultTo(""); + table.integer("slow_response_notification_resend_interval").defaultTo(0); }); } diff --git a/src/pages/EditMonitor.vue b/src/pages/EditMonitor.vue index 78e7417a5..eebb52dc1 100644 --- a/src/pages/EditMonitor.vue +++ b/src/pages/EditMonitor.vue @@ -465,6 +465,15 @@ +