From 6feed9e2ee6d806b09998408322424f5966b64f0 Mon Sep 17 00:00:00 2001 From: Nico Stapelbroek Date: Sun, 25 Nov 2018 13:40:11 +0100 Subject: [PATCH] Fix configuring postgres leads to wrong database driver key --- app/Console/Commands/InstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/InstallCommand.php b/app/Console/Commands/InstallCommand.php index 06fd8410d7f8..a6878c0fea85 100644 --- a/app/Console/Commands/InstallCommand.php +++ b/app/Console/Commands/InstallCommand.php @@ -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']);