fix: slack and discord url now uses text filed because encryption makes the url very long
This commit is contained in:
parent
fdf757c7ae
commit
2639cf7544
2 changed files with 2 additions and 2 deletions
|
|
@ -16,7 +16,7 @@ public function up(): void
|
|||
$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);
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ public function up(): void
|
|||
$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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue