addSql('ALTER TABLE scenario DROP distribution_mode'); } public function down(Schema $schema): void { // Assumes an empty table (the column was always empty/unused); the // NOT NULL re-add would fail on any pre-existing populated rows. $this->addSql('ALTER TABLE scenario ADD distribution_mode VARCHAR(255) NOT NULL'); } }