Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
24 | public function down(Schema $schema): void |
||
25 | { |
||
26 | $this->abortIf('postgresql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'postgresql\'.'); |
||
27 | |||
28 | $this->addSql('CREATE SCHEMA public'); |
||
29 | $this->addSql('ALTER TABLE npd_notification DROP url_title'); |
||
30 | } |
||
32 |