1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 12:54:05 +00:00

Set default credentials

This commit is contained in:
lukinovec 2023-05-23 09:57:24 +02:00
parent c4b1d1c6c4
commit aec8d50b7d

View file

@ -91,8 +91,8 @@ abstract class TestCase extends \Orchestra\Testbench\TestCase
'host' => 'postgres',
'port' => env('POSTGRES_PORT', '5432'),
'database' => env('POSTGRES_DB', 'main'),
'username' => env('POSTGRES_USER', env('DB_USERNAME')),
'password' => env('POSTGRES_PASSWORD', env('DB_PASSWORD')),
'username' => env('POSTGRES_USER', 'root'),
'password' => env('POSTGRES_PASSWORD', 'password'),
'charset' => 'utf8',
'prefix' => '',
'prefix_indexes' => true,