Skip to content

Commit

Permalink
revert databases settings
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-helldar committed Dec 15, 2023
1 parent db35825 commit ebef273
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/Configurations/MySQL.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class MySQL extends BaseConfiguration
'url' => null,
'host' => '127.0.0.1',
'port' => '3306',
'database' => 'default',
'database' => 'forge',
'username' => 'root',
'password' => 'root',
'unix_socket' => '',
Expand Down
4 changes: 2 additions & 2 deletions tests/Configurations/Postgres.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ class Postgres extends BaseConfiguration
'url' => null,
'host' => '127.0.0.1',
'port' => '5432',
'database' => 'default',
'username' => 'root',
'database' => 'forge',
'username' => 'default',
'password' => 'root',
'charset' => 'utf8',
'prefix' => '',
Expand Down
2 changes: 1 addition & 1 deletion tests/Configurations/SqlServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class SqlServer extends BaseConfiguration
'url' => null,
'host' => '127.0.0.1',
'port' => '1433',
'database' => 'default',
'database' => 'forge',
'username' => 'sa',
'password' => '',
'charset' => 'utf8',
Expand Down

0 comments on commit ebef273

Please sign in to comment.