Merge pull request #3341 from nstapelbroek/fix/postgress-driver-during-config

Fix configuring Postgres leads to wrong database driver key
This commit is contained in:
James Brooks
2018-11-25 15:22:40 +00:00
committed by GitHub

View File

@@ -140,7 +140,7 @@ class InstallCommand extends Command
$config['DB_DRIVER'] = $this->choice('Which database driver do you want to use?', [
'mysql' => 'MySQL',
'postgresql' => 'PostgreSQL',
'pgsql' => 'PostgreSQL',
'sqlite' => 'SQLite',
], $config['DB_DRIVER']);