dosubot[bot] commented on issue #7999: URL: https://github.com/apache/incubator-devlake/issues/7999#issuecomment-2328224223
<!-- Greeting --> Hey @KyriosGN0! I'm here to help you with any issues, answer questions, and guide you to become a contributor. Let me know how I can assist you! <!-- Answer --> The `customize` plugin does not recognize the array type when creating a new custom field in the issues table because, according to the latest documentation, only the following five types are supported for direct addition to the `issues` table: - varchar(255) - text - bigint - float - timestamp While the array type is indeed supported, it is handled differently. For array types, a new table called `issue_custom_array_fields` is created, which contains `issue_id`, `field_id`, and `value` columns. This table has a one-to-many relationship with the `issues` table. Therefore, the array type cannot be directly added as a custom field in the `issues` table but is instead managed through this separate table. For more details, you can refer to the [Customize Plugin documentation](https://devlake.apache.org/docs/Plugins/customize) <sup>[[1]](https://github.com/apache/incubator-devlake-website/blob/main/docs/DataModels/DevLakeDomainLayerSchema.md)</sup><sup>[[2]](https://github.com/apache/incubator-devlake-website/blob/main/versioned_docs/version-v0.20/DataModels/DevLakeDomainLayerSchema.md)</sup><sup>[[3]](https://github.com/apache/incubator-devlake-website/blob/main/versioned_docs/version-v0.21/DataModels/DevLakeDomainLayerSchema.md)</sup><sup>[[4]](https://github.com/apache/incubator-devlake-website/blob/main/versioned_docs/version-v0.19/Plugins/customize.md)</sup><sup>[[5]](https://github.com/apache/incubator-devlake-website/blob/main/versioned_docs/version-v0.21/Plugins/customize.md)</sup>. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@devlake.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org