Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 9 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
25 | public function down(Schema $schema): void |
||
26 | { |
||
27 | // this down() migration is auto-generated, please modify it to your needs |
||
28 | $this->abortIf('postgresql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'postgresql\'.'); |
||
29 | |||
30 | $this->addSql('ALTER TABLE swp_apple_news_config ALTER channel_id SET NOT NULL'); |
||
31 | $this->addSql('ALTER TABLE swp_apple_news_config ALTER api_key_id SET NOT NULL'); |
||
32 | $this->addSql('ALTER TABLE swp_apple_news_config ALTER api_key_secret SET NOT NULL'); |
||
33 | } |
||
34 | } |
||
35 |