diff --git a/database/migrations/2025_10_10_120000_create_webhook_notification_settings_table.php b/database/migrations/2025_10_10_120000_create_webhook_notification_settings_table.php index d48b1e4a5..a3edacbf9 100644 --- a/database/migrations/2025_10_10_120000_create_webhook_notification_settings_table.php +++ b/database/migrations/2025_10_10_120000_create_webhook_notification_settings_table.php @@ -30,6 +30,7 @@ public function up(): void $table->boolean('server_disk_usage_webhook_notifications')->default(true); $table->boolean('server_reachable_webhook_notifications')->default(false); $table->boolean('server_unreachable_webhook_notifications')->default(true); + $table->boolean('server_patch_webhook_notifications')->default(false); $table->unique(['team_id']); }); diff --git a/database/migrations/2025_10_10_120001_populate_webhook_notification_settings_for_existing_teams.php b/database/migrations/2025_10_10_120001_populate_webhook_notification_settings_for_existing_teams.php index 4494ca927..de2707557 100644 --- a/database/migrations/2025_10_10_120001_populate_webhook_notification_settings_for_existing_teams.php +++ b/database/migrations/2025_10_10_120001_populate_webhook_notification_settings_for_existing_teams.php @@ -30,6 +30,7 @@ public function up(): void 'server_disk_usage_webhook_notifications' => true, 'server_reachable_webhook_notifications' => false, 'server_unreachable_webhook_notifications' => true, + 'server_patch_webhook_notifications' => false, ] ); }