Installer: Loosen restrictions on MySQL connection details

Closes #602.
This commit is contained in:
Franz Liedke 2015-12-27 17:31:42 +01:00
parent f69369fb88
commit 52cf465a90

View File

@ -120,8 +120,8 @@ class InstallCommand extends AbstractCommand
[ [
'driver' => 'required|in:mysql', 'driver' => 'required|in:mysql',
'host' => 'required', 'host' => 'required',
'database' => 'required|alpha_dash', 'database' => 'required|string',
'username' => 'required|alpha_dash', 'username' => 'required|string',
'prefix' => 'alpha_dash|max:10' 'prefix' => 'alpha_dash|max:10'
] ]
); );