| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 23 | public function down(Schema $schema) : void |
||
| 24 | { |
||
| 25 | // this down() migration is auto-generated, please modify it to your needs |
||
| 26 | $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); |
||
| 27 | |||
| 28 | $this->addSql('ALTER TABLE sylius_customer DROP FOREIGN KEY FK_7E82D5E6687083A9'); |
||
| 29 | $this->addSql('DROP INDEX IDX_7E82D5E6687083A9 ON sylius_customer'); |
||
| 30 | $this->addSql('ALTER TABLE sylius_customer DROP enroller_id'); |
||
| 31 | } |
||
| 33 |