addSql('ALTER TABLE service ADD is_external BOOLEAN DEFAULT false NOT NULL'); $this->addSql('ALTER TABLE service ADD external_type VARCHAR(50) DEFAULT NULL'); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql('ALTER TABLE service DROP is_external'); $this->addSql('ALTER TABLE service DROP external_type'); } }