addSql('ALTER TABLE command_task ADD organizational_unit_id INT DEFAULT NULL'); $this->addSql('ALTER TABLE command_task ADD CONSTRAINT FK_F3D475A8FB84408A FOREIGN KEY (organizational_unit_id) REFERENCES organizational_unit (id)'); $this->addSql('CREATE INDEX IDX_F3D475A8FB84408A ON command_task (organizational_unit_id)'); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql('ALTER TABLE command_task DROP FOREIGN KEY FK_F3D475A8FB84408A'); $this->addSql('DROP INDEX IDX_F3D475A8FB84408A ON command_task'); $this->addSql('ALTER TABLE command_task DROP organizational_unit_id'); } }