| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 35 | public function up(Schema $schema): void |
||
| 36 | { |
||
| 37 | // this up() migration is auto-generated, please modify it to your needs |
||
| 38 | $this->abortIf( |
||
| 39 | $this->connection->getDatabasePlatform()->getName() !== 'mysql', |
||
| 40 | 'Migration can only be executed safely on \'mysql\'.' |
||
| 41 | ); |
||
| 42 | |||
| 43 | $this->addSql('ALTER TABLE log_request CHANGE is_master_request is_main_request TINYINT(1) NOT NULL'); |
||
| 44 | } |
||
| 62 |