From bbed527ecceeb5674aac6d4ee1c7a7ea320f92b5 Mon Sep 17 00:00:00 2001 From: Samuel Georges Date: Sun, 29 Dec 2019 10:14:49 +1100 Subject: [PATCH] Supply engine as default config This is currently supplied by the blueprint. This commit is a proactive step to move to config instead. Consider removing from this from blueprints in later years: $table->engine = 'InnoDB'; --- config/database.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/database.php b/config/database.php index 0b33b461f..8448c347c 100644 --- a/config/database.php +++ b/config/database.php @@ -54,6 +54,7 @@ return [ 'mysql' => [ 'driver' => 'mysql', + 'engine' => 'InnoDB', 'host' => 'localhost', 'port' => 3306, 'database' => 'database',