feat: create migration for webhook notification settings and cloud init scripts tables

This commit is contained in:
Andras Bacsai 2025-11-25 17:06:16 +01:00
parent 9113ed714f
commit 55d0671612
2 changed files with 0 additions and 1 deletions

View file

@ -35,7 +35,6 @@ public function up(): void
$table->boolean('server_reachable_webhook_notifications')->default(false); $table->boolean('server_reachable_webhook_notifications')->default(false);
$table->boolean('server_unreachable_webhook_notifications')->default(true); $table->boolean('server_unreachable_webhook_notifications')->default(true);
$table->boolean('server_patch_webhook_notifications')->default(false); $table->boolean('server_patch_webhook_notifications')->default(false);
$table->boolean('traefik_outdated_webhook_notifications')->default(true);
$table->unique(['team_id']); $table->unique(['team_id']);
}); });