Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | public function down(Schema $schema): void |
||
32 | { |
||
33 | // this down() migration is auto-generated, please modify it to your needs |
||
34 | $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); |
||
35 | |||
36 | $this->addSql('ALTER TABLE sylius_channel DROP FOREIGN KEY FK_16C8119EF242B1E6'); |
||
37 | $this->addSql('DROP INDEX IDX_16C8119EF242B1E6 ON sylius_channel'); |
||
38 | $this->addSql('ALTER TABLE sylius_channel DROP menu_taxon_id'); |
||
39 | } |
||
40 | } |
||
41 |