We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4569f9 commit be3bf40Copy full SHA for be3bf40
1 file changed
bin/tasks/load.php
@@ -69,15 +69,16 @@
69
'attrs' => MySQL::getPDOAttributes(),
70
],
71
'postgres' => [
72
- 'host' => 'postgres',
73
- 'port' => 5432,
74
- 'user' => 'root',
75
- 'pass' => 'password',
76
- 'dsn' => static fn (string $host, int $port) => "pgsql:host={$host};port={$port}",
77
- 'driver' => 'pgsql',
78
- 'adapter' => Postgres::class,
79
- 'attrs' => Postgres::getPDOAttributes(),
80
- ],
+ 'postgres' => [
+ 'host' => 'postgres',
+ 'port' => 5432,
+ 'user' => 'postgres',
+ 'pass' => 'password',
+ 'dsn' => static fn (string $host, int $port) => "pgsql:host={$host};port={$port}",
+ 'driver' => 'pgsql',
+ 'adapter' => Postgres::class,
+ 'attrs' => Postgres::getPDOAttributes(),
81
+ ],
82
];
83
84
if (!isset($dbAdapters[$adapter])) {
0 commit comments