abortIf($this->connection->getDatabasePlatform()->getName() != "mysql"); $this->addSql("ALTER TABLE news ADD public TINYINT(1) DEFAULT NULL"); $this->addSql("UPDATE news SET public = 1"); $this->addSql("ALTER TABLE news CHANGE public public TINYINT(1) NOT NULL"); } 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("ALTER TABLE news DROP public"); } }