| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 7 | 
| Code Lines | 4 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 26 | public function down(Schema $schema): void | ||
| 27 |     { | ||
| 28 |         $this->abortIf('postgresql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'postgresql\'.'); | ||
| 29 | |||
| 30 |         $this->addSql('ALTER TABLE course DROP visible'); | ||
| 31 |         $this->addSql('ALTER TABLE course DROP start_date'); | ||
| 32 |         $this->addSql('ALTER TABLE course DROP end_date'); | ||
| 33 | } | ||
| 35 |