addSql('ALTER TABLE game_row ADD hint_type VARCHAR(20) DEFAULT NULL'); $this->addSql('ALTER TABLE game_row ADD hint_data VARCHAR(255) DEFAULT NULL'); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql('ALTER TABLE game_row DROP hint_type'); $this->addSql('ALTER TABLE game_row DROP hint_data'); } }