addSql('ALTER TABLE chill_docgen_template ADD entities TEXT'); $this->addSql('ALTER TABLE chill_docgen_template ADD context VARCHAR(255)'); $this->addSql('COMMENT ON COLUMN chill_docgen_template.entities IS \'(DC2Type:simple_array)\''); } public function down(Schema $schema): void { $this->addSql('ALTER TABLE chill_docgen_template DROP entities'); $this->addSql('ALTER TABLE chill_docgen_template DROP context'); $this->addSql('COMMENT ON COLUMN chill_docgen_template.name IS NULL'); } }