2020-08-12 11:10:02 -04:00
---
stage: Plan
group: Project Management
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#designated-technical-writers
---
2019-10-07 02:06:10 -04:00
# Issuable-like Rails models utilities
2019-11-21 10:06:17 -05:00
GitLab Rails codebase contains several models that hold common functionality and behave similarly to
2020-02-25 04:09:10 -05:00
[Issues ](../user/project/issues/index.md ). Other examples of "issuables"
are [Merge Requests ](../user/project/merge_requests/index.md ) and
[Epics ](../user/group/epics/index.md ).
2019-10-07 02:06:10 -04:00
This guide accumulates guidelines on working with such Rails models.
## Important text fields
2020-08-12 11:10:02 -04:00
There are maximum length constraints for the most important text fields for issuables:
2019-10-07 02:06:10 -04:00
2020-08-12 11:10:02 -04:00
- `title` : 255 characters
- `title_html` : 800 characters
2019-10-15 20:06:16 -04:00
- `description` : 1 megabyte
- `description_html` : 5 megabytes