| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function down(Schema $schema) |
||
| 29 | { |
||
| 30 | // this down() migration is auto-generated, please modify it to your needs |
||
| 31 | $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql', 'Migration can only be executed safely on \'mysql\'.'); |
||
| 32 | |||
| 33 | $this->addSql('CREATE TABLE institution_with_personal_ra_details (institution VARCHAR(255) NOT NULL COLLATE utf8_unicode_ci, PRIMARY KEY(institution)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB'); |
||
| 34 | $this->addSql('DROP TABLE institution_with_ra_locations'); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |