addSql('ALTER TABLE season ADD games_per_week INT DEFAULT NULL'); $this->addSql('ALTER TABLE team ADD day_of_the_week_for_home_game 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 season DROP games_per_week'); $this->addSql('ALTER TABLE team DROP day_of_the_week_for_home_game'); } }