dosubot[bot] commented on issue #8250: URL: https://github.com/apache/incubator-devlake/issues/8250#issuecomment-2556208211
<!-- Greeting --> Hey @krishnaku! 👋 I'm here to help you with any bugs, questions, or contributions. I'll assist you while we wait for a human maintainer. <!-- Answer --> The issue you're encountering is due to the `avatar_url` field being defined as `VARCHAR(255)`, which is causing a "data too long" error when the URL exceeds this length. This field is indeed defined with a maximum length of 255 characters in the codebase <sup>[[1]](https://github.com/apache/incubator-devlake-website/blob/main/versioned_docs/version-v0.15/DataModels/DevLakeDomainLayerSchema.md)</sup>. You've resolved the issue by changing the column type to `TEXT`, which allows for longer URLs. This is a practical workaround, but it might be worth considering if this change should be made in the main codebase to prevent similar issues for other users. If you're willing to submit a pull request, you could propose this change to the repository maintainers. It would be helpful to include your findings and the rationale for changing the column type to `TEXT` to accommodate longer URLs. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/823c3a3c-6b91-41de-a71e-7c8d42edea63?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/823c3a3c-6b91-41de-a71e-7c8d42edea63?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/823c3a3c-6b91-41de-a71e-7c8d42edea63?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/823c3a3c-6b91-41de-a71e-7c8d42edea63?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/823c3a3c-6b91-41de-a71e-7c8d42edea63?feedback_type=hallucination) | [Other](https://app.dosu.dev/response-feedback/823c3a3c-6b91-41de-a71e-7c8d42edea63?feedback_type=other)</sup> -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
