More fixes
This commit is contained in:
parent
bda42b673f
commit
1438a50ae9
2 changed files with 2 additions and 2 deletions
|
@ -153,7 +153,7 @@ class AppSettingsCommand extends Command
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($this->variables['REDIS_PASSWORD'])) {
|
if (empty($this->variables['REDIS_PASSWORD'])) {
|
||||||
unset($this->variables['REDIS_PASSWORD']);
|
$this->variables['REDIS_PASSWORD'] = 'null';
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->variables['REDIS_PORT'] = $this->option('redis-port') ?? $this->ask(
|
$this->variables['REDIS_PORT'] = $this->option('redis-port') ?? $this->ask(
|
||||||
|
|
|
@ -41,7 +41,7 @@ return [
|
||||||
'charset' => 'utf8mb4',
|
'charset' => 'utf8mb4',
|
||||||
'collation' => 'utf8mb4_unicode_ci',
|
'collation' => 'utf8mb4_unicode_ci',
|
||||||
'prefix' => '',
|
'prefix' => '',
|
||||||
'strict' => env('DB_STRICT_MODE', true),
|
'strict' => env('DB_STRICT_MODE', false),
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue