Modify ↓
Opened 6 years ago
Closed 4 years ago
#13510 closed defect (fixed)
Description field not large enough
Reported by: | Martijn Zeedijk | Owned by: | Cinc-th |
---|---|---|---|
Priority: | normal | Component: | SimpleMultiProjectPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 1.2 |
Description (last modified by )
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.
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.
I changed this myself with
ALTER TABLE smp_project ALTER COLUMN description TYPE text;
and it seems to work.
Attachments (0)
Change History (4)
comment:1 Changed 6 years ago by
Description: | modified (diff) |
---|
comment:2 Changed 6 years ago by
Type: | enhancement → defect |
---|
comment:4 Changed 4 years ago by
Owner: | set to Cinc-th |
---|---|
Resolution: | → fixed |
Status: | new → closed |
In 17810:
Note: See
TracTickets for help on using
tickets.
For portability we should eliminate all uses of
varchar
in the tables. An environment upgrade step will be needed to migrate the schema.