addSql(<<<'SQL' ALTER TABLE intervention ADD remarque TEXT DEFAULT NULL SQL); $this->addSql(<<<'SQL' ALTER TABLE intervention ADD start_date TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL SQL); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql(<<<'SQL' CREATE SCHEMA public SQL); $this->addSql(<<<'SQL' ALTER TABLE intervention DROP remarque SQL); $this->addSql(<<<'SQL' ALTER TABLE intervention DROP start_date SQL); } }