Skip to content

Commit

Permalink
Fix configuring postgres leads to wrong database driver key
Browse files Browse the repository at this point in the history
  • Loading branch information
nstapelbroek committed Nov 25, 2018
1 parent 4a6fd7d commit 6feed9e
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 6feed9e

Please sign in to comment.