Changes between Initial Version and Version 1 of Ticket #13510
- Timestamp:
- Dec 12, 2018, 4:22:05 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13510 – Description
initial v1 1 1 I have about 10 milestones that I want to show with a ticketQuery in the description of the project. At some point saving will result in an error, although it doesn't show one. It will just show an empty project list instead. 2 2 3 My guess it that I went over 255 chars which is the maximum of the varchar field in the database. This field should be of type textinstead.3 My guess it that I went over 255 chars which is the maximum of the `varchar` field in the database. This field should be of type `text` instead. 4 4 5 5 I changed this myself with 6 {{{#!sql 6 7 ALTER TABLE smp_project ALTER COLUMN description TYPE text; 8 }}} 9 7 10 and it seems to work.