Fix configuring postgres leads to wrong database driver key

This commit is contained in:
Nico Stapelbroek
2018-11-25 13:40:11 +01:00
parent 4a6fd7dc70
commit 6feed9e2ee

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']);