addSql('ALTER TABLE offering ALTER coordinate TYPE TEXT'); $this->addSql('ALTER TABLE offering ALTER coordinate DROP DEFAULT'); $this->addSql('COMMENT ON COLUMN offering.coordinate IS \'(DC2Type:object)\''); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql('CREATE SCHEMA public'); $this->addSql('ALTER TABLE offering ALTER coordinate TYPE JSON'); $this->addSql('ALTER TABLE offering ALTER coordinate DROP DEFAULT'); $this->addSql('COMMENT ON COLUMN offering.coordinate IS NULL'); } }