match up db named/seeder to installer names/env names

This commit is contained in:
Nabeel Shahzad
2017-12-04 15:35:39 -06:00
parent 9c1a8f8251
commit 3849b55c50
4 changed files with 27 additions and 11 deletions

View File

@@ -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' => '',
],