From 22ef6c8c9a257b0f7bf3ef9e9458348428e226e2 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Fri, 10 Oct 2025 17:52:07 +0200 Subject: [PATCH] fix: add missing server_patch_webhook_notifications field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add the server_patch_webhook_notifications column to both the create and populate migrations to match the model and Livewire component expectations. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- ...5_10_10_120000_create_webhook_notification_settings_table.php | 1 + ...populate_webhook_notification_settings_for_existing_teams.php | 1 + 2 files changed, 2 insertions(+) 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, ] ); }