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

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