From 4a20abcbfa1cb459bddc289ee38f6eb31264d32e Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 28 Jul 2023 11:15:30 +0200 Subject: [PATCH] fix: text field --- ..._07_27_182013_smtp_discord_schemaless_to_normal.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/database/migrations/2023_07_27_182013_smtp_discord_schemaless_to_normal.php b/database/migrations/2023_07_27_182013_smtp_discord_schemaless_to_normal.php index 45cb25bc3..2faa9f9ba 100644 --- a/database/migrations/2023_07_27_182013_smtp_discord_schemaless_to_normal.php +++ b/database/migrations/2023_07_27_182013_smtp_discord_schemaless_to_normal.php @@ -21,8 +21,8 @@ return new class extends Migration $table->string('smtp_host')->nullable(); $table->integer('smtp_port')->nullable(); $table->string('smtp_encryption')->nullable(); - $table->string('smtp_username')->nullable(); - $table->string('smtp_password')->nullable(); + $table->text('smtp_username')->nullable(); + $table->text('smtp_password')->nullable(); $table->integer('smtp_timeout')->nullable(); $table->boolean('smtp_notifications_test')->default(true); $table->boolean('smtp_notifications_deployments')->default(false); @@ -69,12 +69,12 @@ return new class extends Migration $table->boolean('smtp_enabled')->default(false); $table->string('smtp_from_address')->nullable(); $table->string('smtp_from_name')->nullable(); - $table->string('smtp_recipients')->nullable(); + $table->text('smtp_recipients')->nullable(); $table->string('smtp_host')->nullable(); $table->integer('smtp_port')->nullable(); $table->string('smtp_encryption')->nullable(); - $table->string('smtp_username')->nullable(); - $table->string('smtp_password')->nullable(); + $table->text('smtp_username')->nullable(); + $table->text('smtp_password')->nullable(); $table->integer('smtp_timeout')->nullable(); }); $instance_settings = InstanceSettings::all();