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