abortIf( $this->connection->getDatabasePlatform()->getName() != 'mysql', 'Migration can only be executed safely on "mysql".' ); $this->addSql('CREATE INDEX type_idx ON digicomp_sequence_domain_model_insert (type)'); } /** * @param Schema $schema * @return void */ public function down(Schema $schema) { // this down() migration is autogenerated, please modify it to your needs $this->abortIf( $this->connection->getDatabasePlatform()->getName() != 'mysql', 'Migration can only be executed safely on "mysql".' ); $this->addSql('DROP INDEX type_idx ON digicomp_sequence_domain_model_insert'); } }