| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 51 | public function down(Schema $schema): void |
||
| 52 | { |
||
| 53 | // this down() migration is auto-generated, please modify it to your needs |
||
| 54 | $this->abortIf( |
||
| 55 | $this->connection->getDatabasePlatform()->getName() !== 'mysql', |
||
| 56 | 'Migration can only be executed safely on \'mysql\'.' |
||
| 57 | ); |
||
| 58 | |||
| 59 | $this->addSql('ALTER TABLE log_request CHANGE is_main_request is_master_request TINYINT(1) NOT NULL'); |
||
| 60 | } |
||
| 62 |