mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
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 @@ 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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue