significantly increases length of subject field

Sat, 30 May 2020 18:12:38 +0200

author
Mike Becker <universe@uap-core.de>
date
Sat, 30 May 2020 18:12:38 +0200
changeset 85
3d16ad54b3dc
parent 84
5407d4ea0611
child 86
0a658e53177c

significantly increases length of subject field

setup/postgres/psql_create_tables.sql file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/jsp/issue-form.jsp file | annotate | diff | comparison | revisions
     1.1 --- a/setup/postgres/psql_create_tables.sql	Sat May 30 18:07:41 2020 +0200
     1.2 +++ b/setup/postgres/psql_create_tables.sql	Sat May 30 18:12:38 2020 +0200
     1.3 @@ -63,7 +63,7 @@
     1.4      project         integer         not null references lpit_project(projectid),
     1.5      status          issue_status    not null default 'InSpecification',
     1.6      category        issue_category  not null default 'Feature',
     1.7 -    subject         varchar(20)     not null,
     1.8 +    subject         varchar(200)    not null,
     1.9      description     text,
    1.10      assignee        integer         references lpit_user(userid),
    1.11      created         timestamp       with time zone not null default now(),
     2.1 --- a/src/main/webapp/WEB-INF/jsp/issue-form.jsp	Sat May 30 18:07:41 2020 +0200
     2.2 +++ b/src/main/webapp/WEB-INF/jsp/issue-form.jsp	Sat May 30 18:12:38 2020 +0200
     2.3 @@ -90,7 +90,7 @@
     2.4          </tr>
     2.5          <tr>
     2.6              <th><fmt:message key="issue.subject"/></th>
     2.7 -            <td><input name="subject" type="text" maxlength="20" required value="<c:out value="${issue.subject}"/>" /></td>
     2.8 +            <td><input name="subject" type="text" maxlength="200" required value="<c:out value="${issue.subject}"/>" /></td>
     2.9          </tr>
    2.10          <tr>
    2.11              <th class="vtop"><fmt:message key="issue.description"/></th>

mercurial