Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 8 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
27 | public function down(Schema $schema): void |
||
28 | { |
||
29 | // this down() migration is auto-generated, please modify it to your needs |
||
30 | $this->abortIf('postgresql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'postgresql\'.'); |
||
31 | |||
32 | $this->addSql('ALTER TABLE swp_slideshow_item ADD deleted_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL'); |
||
33 | $this->addSql('ALTER TABLE swp_slideshow ADD deleted_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL'); |
||
34 | } |
||
35 | } |
||
36 |