Changes between Initial Version and Version 1 of Ticket #13510


Ignore:
Timestamp:
Dec 12, 2018, 4:22:05 PM (4 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13510 – Description

    initial v1  
    11I 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.
    22
    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.
     3My 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.
    44
    55I changed this myself with
     6{{{#!sql
    67 ALTER TABLE smp_project ALTER COLUMN description TYPE text;
     8}}}
     9
    710and it seems to work.