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