| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function up(Schema $schema): void |
||
| 13 | { |
||
| 14 | $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); |
||
|
|
|||
| 15 | |||
| 16 | $this->addSql('ALTER TABLE bookable CHANGE code code VARCHAR(10) DEFAULT NULL'); |
||
| 17 | $this->addSql('UPDATE bookable SET code = NULL WHERE code = ""'); |
||
| 18 | $this->addSql('CREATE UNIQUE INDEX UNIQ_A10B812477153098 ON bookable (code)'); |
||
| 19 | } |
||
| 21 |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.