Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function down(Schema $schema) |
||
23 | { |
||
24 | // this down() migration is auto-generated, please modify it to your needs |
||
25 | $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql', 'Migration can only be executed safely on \'mysql\'.'); |
||
26 | |||
27 | $this->addSql('DROP INDEX idxft_identity_commonname ON identity'); |
||
28 | $this->addSql('ALTER TABLE identity DROP common_name, CHANGE institution institution VARCHAR(255) NOT NULL COLLATE utf8_unicode_ci'); |
||
29 | } |
||
30 | } |
||
31 |