From de736857641bc6b39fa8203621f820bdaf2423a6 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Thu, 6 Dec 2018 00:34:43 +0100 Subject: [PATCH] Do not create tables as InnoDB automatically, rely on connection default As argued in #1675, this makes us slightly less reliant on MySQL. --- framework/core/src/Database/Migration.php | 1 - 1 file changed, 1 deletion(-) diff --git a/framework/core/src/Database/Migration.php b/framework/core/src/Database/Migration.php index 2109bd429..6226bd913 100644 --- a/framework/core/src/Database/Migration.php +++ b/framework/core/src/Database/Migration.php @@ -31,7 +31,6 @@ abstract class Migration 'up' => function (Builder $schema) use ($name, $definition) { $schema->create($name, function (Blueprint $table) use ($schema, $definition) { $definition($table); - $table->engine = 'InnoDB'; static::fixIndexNames($schema, $table); });