diff --git a/database/migrations/2025_01_27_102616_add_ssl_fields_to_standalone_postgresqls.php b/database/migrations/2025_01_27_102616_add_ssl_fields_to_standalone_postgresqls.php index 409d6bb36..3b0ce8aa4 100644 --- a/database/migrations/2025_01_27_102616_add_ssl_fields_to_standalone_postgresqls.php +++ b/database/migrations/2025_01_27_102616_add_ssl_fields_to_standalone_postgresqls.php @@ -13,7 +13,7 @@ return new class extends Migration { Schema::table('standalone_postgresqls', function (Blueprint $table) { $table->boolean('enable_ssl')->default(true); - $table->string('ssl_mode')->nullable()->default('verify-full'); + $table->string('ssl_mode')->nullable()->default('require'); }); }