Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function up(Schema $schema): void |
||
28 | { |
||
29 | // this up() migration is auto-generated, please modify it to your needs |
||
30 | $this->abortIf( |
||
31 | $this->connection->getDatabasePlatform()->getName() !== 'mysql', |
||
32 | 'Migration can only be executed safely on \'mysql\'.' |
||
33 | ); |
||
34 | |||
35 | $this->addSql('ALTER TABLE log_request CHANGE is_master_request is_main_request TINYINT(1) NOT NULL'); |
||
36 | } |
||
54 |