longText('postgres_conf')->nullable(); $table->string('image')->default('postgres:16-alpine')->change(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('standalone_postgresqls', function (Blueprint $table) { $table->dropColumn('postgres_conf'); $table->string('image')->default('postgres:15-alpine')->change(); }); } };