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
commit 2750505f28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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