throwIrreversibleMigrationException(); } public function getDescription(): string { return 'remove comment on deprecated json_array type'; } public function up(Schema $schema): void { $columns = [ 'chill_doc.document_category.name', 'chill_doc.stored_object.key', 'chill_doc.stored_object.iv', 'chill_doc.stored_object.datas', ]; foreach ($columns as $col) { $this->addSql("COMMENT ON COLUMN {$col} IS NULL"); } } }