mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 05:44:04 +00:00
Update configuring Postgres credentials in TestCase
This commit is contained in:
parent
aa21514c49
commit
c4b1d1c6c4
1 changed files with 4 additions and 4 deletions
|
|
@ -89,10 +89,10 @@ abstract class TestCase extends \Orchestra\Testbench\TestCase
|
||||||
'driver' => 'pgsql',
|
'driver' => 'pgsql',
|
||||||
'url' => env('DATABASE_URL'),
|
'url' => env('DATABASE_URL'),
|
||||||
'host' => 'postgres',
|
'host' => 'postgres',
|
||||||
'port' => '5432',
|
'port' => env('POSTGRES_PORT', '5432'),
|
||||||
'database' => 'main',
|
'database' => env('POSTGRES_DB', 'main'),
|
||||||
'username' => 'postgres',
|
'username' => env('POSTGRES_USER', env('DB_USERNAME')),
|
||||||
'password' => 'postgres',
|
'password' => env('POSTGRES_PASSWORD', env('DB_PASSWORD')),
|
||||||
'charset' => 'utf8',
|
'charset' => 'utf8',
|
||||||
'prefix' => '',
|
'prefix' => '',
|
||||||
'prefix_indexes' => true,
|
'prefix_indexes' => true,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue