Add default value for winter:install database selection question.

Refs: 3b650b7ebd. Thanks to @hune2021.
This commit is contained in:
Luke Towers 2021-03-06 02:50:30 -06:00
parent 3ae78a23ce
commit b2b7978aff

View File

@ -217,7 +217,7 @@ class OctoberInstall extends Command
protected function setupDatabaseConfig()
{
$type = $this->choice('Database type', ['MySQL', 'Postgres', 'SQLite', 'SQL Server']);
$type = $this->choice('Database type', ['MySQL', 'Postgres', 'SQLite', 'SQL Server'], 'SQLite');
$typeMap = [
'SQLite' => 'sqlite',