Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function up(Schema $schema): void |
||
30 | { |
||
31 | $this->abortIf( |
||
32 | $this->connection->getDatabasePlatform()->getName() !== 'mysql', |
||
33 | 'Migration can only be executed safely on \'mysql\'.', |
||
34 | ); |
||
35 | |||
36 | $this->addSql('CREATE INDEX idx_vetted_second_factor_type ON vetted_second_factor (type)'); |
||
37 | $this->addSql('DROP TABLE ra_candidate'); |
||
38 | } |
||
50 |