fix(ssl): make default ssl mode require not verify-full as it does not need a ca cert
This commit is contained in:
parent
546001890c
commit
b53d3d07d9
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ public function up()
|
||||||
{
|
{
|
||||||
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');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue