From 697f9d148ab37cd4ada3d514e15b37d2ac02ec36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Jaussoin?= Date: Thu, 14 Dec 2023 16:02:05 +0100 Subject: [PATCH] Fix #133 Make the MySQL connection unstrict --- flexiapi/config/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flexiapi/config/database.php b/flexiapi/config/database.php index a46ae21..8148b66 100644 --- a/flexiapi/config/database.php +++ b/flexiapi/config/database.php @@ -65,7 +65,7 @@ return [ 'collation' => 'utf8mb4_unicode_ci', 'prefix' => '', 'prefix_indexes' => true, - 'strict' => true, + 'strict' => false, 'engine' => null, 'options' => extension_loaded('pdo_mysql') ? array_filter([ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),