Skip to content

Commit 6328033

Browse files
committed
wip
1 parent b83dbea commit 6328033

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/database/src/Config/PostgresConfig.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ final class PostgresConfig implements DatabaseConfig
1313
{
1414
public string $dsn {
1515
get => sprintf(
16-
'pgsql:host=%s;port=%s;dbname=%s',
16+
'pgsql:host=%s;port=%s;dbname=%s;user=%s;password=%s',
1717
$this->host,
1818
$this->port,
1919
$this->database,
20+
$this->username,
21+
$this->password,
2022
);
2123
}
2224

0 commit comments

Comments
 (0)