diff --git a/database/migrations/2024_12_05_212416_create_discord_notification_settings_table.php b/database/migrations/2024_12_05_212416_create_discord_notification_settings_table.php index 271f33ac6..b9e9bda03 100644 --- a/database/migrations/2024_12_05_212416_create_discord_notification_settings_table.php +++ b/database/migrations/2024_12_05_212416_create_discord_notification_settings_table.php @@ -16,7 +16,7 @@ return new class extends Migration $table->foreignId('team_id')->constrained()->cascadeOnDelete(); $table->boolean('discord_enabled')->default(false); - $table->string('discord_webhook_url')->nullable(); + $table->text('discord_webhook_url')->nullable(); $table->boolean('deployment_success_discord_notifications')->default(false); $table->boolean('deployment_failure_discord_notifications')->default(true); diff --git a/database/migrations/2024_12_06_142014_create_slack_notification_settings_table.php b/database/migrations/2024_12_06_142014_create_slack_notification_settings_table.php index fcc4dc8ce..af46508f0 100644 --- a/database/migrations/2024_12_06_142014_create_slack_notification_settings_table.php +++ b/database/migrations/2024_12_06_142014_create_slack_notification_settings_table.php @@ -16,7 +16,7 @@ return new class extends Migration $table->foreignId('team_id')->constrained()->cascadeOnDelete(); $table->boolean('slack_enabled')->default(false); - $table->string('slack_webhook_url')->nullable(); + $table->text('slack_webhook_url')->nullable(); $table->boolean('deployment_success_slack_notifications')->default(false); $table->boolean('deployment_failure_slack_notifications')->default(true);