addSql('ALTER TABLE domain ALTER updated_at TYPE TIMESTAMP(0) WITHOUT TIME ZONE'); $this->addSql('COMMENT ON COLUMN domain.updated_at IS \'(DC2Type:datetime_immutable)\''); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql('ALTER TABLE domain ALTER updated_at TYPE DATE'); $this->addSql('COMMENT ON COLUMN domain.updated_at IS \'(DC2Type:date_immutable)\''); } }