Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 8 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
27 | public function down(Schema $schema): void |
||
28 | { |
||
29 | // this down() migration is auto-generated, please modify it to your needs |
||
30 | $this->abortIf('postgresql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'postgresql\'.'); |
||
31 | |||
32 | $this->addSql('DROP SEQUENCE swp_analytics_report_id_seq CASCADE'); |
||
33 | $this->addSql('DROP TABLE swp_analytics_report'); |
||
34 | } |
||
35 | } |
||
36 |