addSql("ALTER TABLE service_items ADD service_category VARCHAR(30) DEFAULT 'outpatient' NOT NULL"); $this->addSql("UPDATE service_items SET service_category = 'outpatient' WHERE service_category = ''"); } public function down(Schema $schema): void { $this->addSql('ALTER TABLE service_items DROP service_category'); } }