From a409a00a3af60851c4ab0bcbd19e30359ad09c17 Mon Sep 17 00:00:00 2001 From: Robin Krahnen Date: Tue, 27 Aug 2019 12:41:11 +0200 Subject: [PATCH] removed 'ENGINE = InnoDB' from migrations --- Migrations/Mysql/Version20140505093853.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Migrations/Mysql/Version20140505093853.php b/Migrations/Mysql/Version20140505093853.php index d003d3a..88c4dfe 100644 --- a/Migrations/Mysql/Version20140505093853.php +++ b/Migrations/Mysql/Version20140505093853.php @@ -21,7 +21,7 @@ class Version20140505093853 extends AbstractMigration $this->abortIf($this->connection->getDatabasePlatform()->getName() != "mysql"); $this->addSql( - "CREATE TABLE digicomp_sequence_domain_model_insert (number INT NOT NULL, type VARCHAR(255) NOT NULL, PRIMARY KEY(number, type)) ENGINE = InnoDB" + "CREATE TABLE digicomp_sequence_domain_model_insert (number INT NOT NULL, type VARCHAR(255) NOT NULL, PRIMARY KEY(number, type))" ); }