mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
fix: setting MySQL strict mode to true breaks migration (#1615)
This commit is contained in:
parent
784374382a
commit
794ac48172
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ return [
|
|||
'collation' => 'utf8mb4_unicode_ci',
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'strict' => true,
|
||||
'strict' => false, // setting this to true will cause IncreaseStringColumnsLength migration to fail
|
||||
'engine' => null,
|
||||
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||
|
|
Loading…
Reference in a new issue