Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | public function down(Schema $schema): void |
||
37 | { |
||
38 | // this down() migration is auto-generated, please modify it to your needs |
||
39 | $this->abortIf('postgresql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'postgresql\'.'); |
||
40 | |||
41 | $this->addSql('DROP SEQUENCE user_id_seq CASCADE'); |
||
42 | $this->addSql('DROP TABLE "user"'); |
||
43 | } |
||
45 |