fix(ssl): make default ssl mode require not verify-full as it does not need a ca cert

This commit is contained in:
peaklabs-dev 2025-01-30 19:09:37 +01:00
parent 546001890c
commit b53d3d07d9
No known key found for this signature in database

View File

@ -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');
});
}