addSql('ALTER TABLE offering ADD coordinates TEXT DEFAULT NULL'); $this->addSql('COMMENT ON COLUMN offering.coordinates IS \'(DC2Type:array)\''); } 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 DROP coordinates'); } }