From ccf7cf7c58fd8351799be525113d02a52fa092d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Viguier?= Date: Sun, 27 Dec 2020 15:14:08 +0100 Subject: [PATCH] Ensure innoDB (#835) --- config/database.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/database.php b/config/database.php index eb1f5c9cf6..b7bfc07bb4 100644 --- a/config/database.php +++ b/config/database.php @@ -55,8 +55,7 @@ 'prefix' => '', 'prefix_indexes' => true, 'strict' => true, - 'engine' => null, - // 'engine' => 'InnoDB ROW_FORMAT=DYNAMIC', + 'engine' => 'InnoDB ROW_FORMAT=DYNAMIC', 'options' => extension_loaded('pdo_mysql') ? array_filter([ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), ]) : [],