mirror of
https://github.com/archtechx/tenancy.git
synced 2026-08-06 15:54:05 +00:00
Reference the DB_URL env var instead of DATABASE_URL
The env var got renamed in Laravel 11 to `DB_URL`
This commit is contained in:
parent
f6d7ac13db
commit
c784a26cee
3 changed files with 4 additions and 4 deletions
|
|
@ -131,7 +131,7 @@ abstract class TestCase extends \Orchestra\Testbench\TestCase
|
|||
'cache.stores.apc' => ['driver' => 'apc'],
|
||||
'database.connections.central' => [
|
||||
'driver' => 'mysql',
|
||||
'url' => env('DATABASE_URL'),
|
||||
'url' => env('DB_URL'),
|
||||
'host' => 'mysql',
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => 'main',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue