match up db named/seeder to installer names/env names
This commit is contained in:
@@ -62,6 +62,7 @@ return [
|
||||
Spatie\Fractal\FractalServiceProvider::class,
|
||||
SebastiaanLuca\Helpers\Methods\GlobalHelpersServiceProvider::class,
|
||||
SebastiaanLuca\Helpers\Collections\CollectionMacrosServiceProvider::class,
|
||||
Toin0u\Geotools\GeotoolsServiceProvider::class,
|
||||
|
||||
/*
|
||||
* Application Service Providers...
|
||||
@@ -71,8 +72,6 @@ return [
|
||||
App\Providers\AuthServiceProvider::class,
|
||||
App\Providers\EventServiceProvider::class,
|
||||
App\Providers\RouteServiceProvider::class,
|
||||
|
||||
Toin0u\Geotools\GeotoolsServiceProvider::class,
|
||||
],
|
||||
|
||||
'aliases' => [
|
||||
|
||||
@@ -21,9 +21,15 @@ return [
|
||||
'engine' => null,
|
||||
],
|
||||
|
||||
'sqlite' => [
|
||||
'driver' => 'sqlite',
|
||||
'database' => storage_path('db.sqlite'),
|
||||
'prefix' => '',
|
||||
],
|
||||
|
||||
'local' => [
|
||||
'driver' => 'sqlite',
|
||||
'database' => storage_path('testing.sqlite'),
|
||||
'database' => storage_path('local.sqlite'),
|
||||
'prefix' => '',
|
||||
],
|
||||
|
||||
|
||||
@@ -68,11 +68,11 @@ return [
|
||||
'app_log_level' => 'required|string|max:50',
|
||||
'app_url' => 'required|url',
|
||||
'database_connection' => 'required|string|max:50',
|
||||
'database_hostname' => 'required|string|max:50',
|
||||
'database_port' => 'required|numeric',
|
||||
'database_name' => 'required|string|max:50',
|
||||
'database_username' => 'required|string|max:50',
|
||||
'database_password' => 'required|string|max:50',
|
||||
'database_hostname' => 'string|max:50',
|
||||
'database_port' => 'numeric',
|
||||
'database_name' => 'string|max:50',
|
||||
'database_username' => 'string|max:50',
|
||||
'database_password' => 'string|max:50',
|
||||
'broadcast_driver' => 'string|max:50',
|
||||
'cache_driver' => 'string|max:50',
|
||||
'session_driver' => 'string|max:50',
|
||||
|
||||
Reference in New Issue
Block a user