abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql', 'Migration can only be executed safely on \'mysql\'.'); $this->addSql(' CREATE TABLE sources ( id INT AUTO_INCREMENT NOT NULL, title VARCHAR(255) NOT NULL, media_type VARCHAR(255) NOT NULL, license VARCHAR(255) NOT NULL, country VARCHAR(255) NOT NULL, rank INT NOT NULL, url VARCHAR(255) NOT NULL, PRIMARY KEY(id) ) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB'); } /** * @param Schema $schema */ public function down(Schema $schema) { // this down() migration is auto-generated, please modify it to your needs $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql', 'Migration can only be executed safely on \'mysql\'.'); $this->addSql('DROP TABLE sources'); } }