Skip to content

Commit be3bf40

Browse files
Update bin/tasks/load.php
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent c4569f9 commit be3bf40

1 file changed

Lines changed: 10 additions & 9 deletions

File tree

bin/tasks/load.php

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,16 @@
6969
'attrs' => MySQL::getPDOAttributes(),
7070
],
7171
'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-
],
72+
'postgres' => [
73+
'host' => 'postgres',
74+
'port' => 5432,
75+
'user' => 'postgres',
76+
'pass' => 'password',
77+
'dsn' => static fn (string $host, int $port) => "pgsql:host={$host};port={$port}",
78+
'driver' => 'pgsql',
79+
'adapter' => Postgres::class,
80+
'attrs' => Postgres::getPDOAttributes(),
81+
],
8182
];
8283

8384
if (!isset($dbAdapters[$adapter])) {

0 commit comments

Comments
 (0)