From 9ae559ce9979e8f280ebbd57d6b802e2a6e6bb48 Mon Sep 17 00:00:00 2001 From: Ferdinand Kuhl Date: Mon, 5 May 2014 10:25:11 +0200 Subject: [PATCH] removing collate info from migration --- Migrations/Mysql/Version20140505093853.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Migrations/Mysql/Version20140505093853.php b/Migrations/Mysql/Version20140505093853.php index 0e97b80..76c4991 100644 --- a/Migrations/Mysql/Version20140505093853.php +++ b/Migrations/Mysql/Version20140505093853.php @@ -16,8 +16,8 @@ class Version20140505093853 extends AbstractMigration { public function up(Schema $schema) { // this up() migration is autogenerated, please modify it to your needs $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)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB"); + + $this->addSql("CREATE TABLE digicomp_sequence_domain_model_insert (number INT NOT NULL, type VARCHAR(255) NOT NULL, PRIMARY KEY(number, type)) ENGINE = InnoDB"); } /** @@ -27,7 +27,7 @@ class Version20140505093853 extends AbstractMigration { public function down(Schema $schema) { // this down() migration is autogenerated, please modify it to your needs $this->abortIf($this->connection->getDatabasePlatform()->getName() != "mysql"); - + $this->addSql("DROP TABLE digicomp_sequence_domain_model_insert"); } } \ No newline at end of file