fix(ssl): make default ssl mode require not verify-full as it does not need a ca cert
This commit is contained in:
@@ -13,7 +13,7 @@ return new class extends Migration
|
|||||||
{
|
{
|
||||||
Schema::table('standalone_postgresqls', function (Blueprint $table) {
|
Schema::table('standalone_postgresqls', function (Blueprint $table) {
|
||||||
$table->boolean('enable_ssl')->default(true);
|
$table->boolean('enable_ssl')->default(true);
|
||||||
$table->string('ssl_mode')->nullable()->default('verify-full');
|
$table->string('ssl_mode')->nullable()->default('require');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user