Skip to content

Commit

Permalink
Merge pull request #3341 from nstapelbroek/fix/postgress-driver-durin…
Browse files Browse the repository at this point in the history
…g-config

Fix configuring Postgres leads to wrong database driver key
  • Loading branch information
jbrooksuk committed Nov 25, 2018
2 parents 4a6fd7d + 6feed9e commit 2750505
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Console/Commands/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ protected function configureDatabase(array $default = [])

$config['DB_DRIVER'] = $this->choice('Which database driver do you want to use?', [
'mysql' => 'MySQL',
'postgresql' => 'PostgreSQL',
'pgsql' => 'PostgreSQL',
'sqlite' => 'SQLite',
], $config['DB_DRIVER']);

Expand Down

0 comments on commit 2750505

Please sign in to comment.