| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| 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->addSql('CREATE SCHEMA public'); |
||
| 31 | $this->addSql('ALTER TABLE to_do ALTER created_at SET DEFAULT \'now()\''); |
||
| 32 | $this->addSql('ALTER TABLE to_do ALTER created_at DROP NOT NULL'); |
||
| 33 | } |
||
| 34 | } |
||
| 35 |