From 67cd3b6f81b7ac2a8bf74a1fdde3a5d1878c384d Mon Sep 17 00:00:00 2001 From: James Cole Date: Wed, 17 Oct 2018 15:50:43 +0200 Subject: [PATCH] Force InnoDB for MySQL. --- config/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/database.php b/config/database.php index 50c1e8ede9..6d9980c537 100644 --- a/config/database.php +++ b/config/database.php @@ -57,7 +57,7 @@ return [ 'collation' => 'utf8mb4_unicode_ci', 'prefix' => '', 'strict' => true, - 'engine' => null, + 'engine' => 'InnoDB', ], 'pgsql' => [ 'driver' => 'pgsql',