fix: setting MySQL strict mode to true breaks migration (#1615)

This commit is contained in:
Phan An 2022-12-04 13:33:21 +01:00 committed by GitHub
parent 784374382a
commit 794ac48172
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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'),