| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function down(Schema $schema): void |
||
| 40 | { |
||
| 41 | // this down() migration is auto-generated, please modify it to your needs |
||
| 42 | $this->abortIf('postgresql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'postgresql\'.'); |
||
| 43 | |||
| 44 | $this->addSql('ALTER TABLE swp_article_statistics ALTER internal_click_rate TYPE INT'); |
||
| 45 | $this->addSql('ALTER TABLE swp_article_statistics ALTER internal_click_rate DROP DEFAULT'); |
||
| 46 | } |
||
| 47 | } |
||
| 48 |