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 new file mode 100644 index 000000000..409d6bb36 --- /dev/null +++ b/database/migrations/2025_01_27_102616_add_ssl_fields_to_standalone_postgresqls.php @@ -0,0 +1,30 @@ +boolean('enable_ssl')->default(true); + $table->string('ssl_mode')->nullable()->default('verify-full'); + }); + } + + /** + * Reverse the migrations. + */ + public function down() + { + Schema::table('standalone_postgresqls', function (Blueprint $table) { + $table->dropColumn('enable_ssl'); + $table->dropColumn('ssl_mode'); + }); + } +};