Increased field size: pattern.description

This commit is contained in:
Socrates
2020-05-30 08:12:04 +02:00
parent 1108c0dcb7
commit ea8b82ece1
4 changed files with 2 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ public class Pattern {
@Column(length=36)
private String oid;
@Column(length=20, unique=true)
@Column(length=36, unique=true)
private String description;
@OneToMany(mappedBy="pattern")

Binary file not shown.

Binary file not shown.

View File

@@ -1,7 +1,4 @@
<%
request.setCharacterEncoding("UTF-8");
Servlets.setCharacterEncoding(request, response);
%> <%-- Must be the very first, in order character encoding takes effect --%>
<% Servlets.setCharacterEncoding(request, response); %> <%-- Must be the very first, in order character encoding takes effect --%>
<%@ include file="imports.jsp"%>
@@ -21,7 +18,6 @@
<%@page import="org.apache.commons.logging.LogFactory" %>
<%@page import="org.apache.commons.logging.Log" %>
<%@page import="org.openxava.web.Browsers"%>
<%@page contentType="text/html; charset=UTF-8" %>
<%!private static Log log = LogFactory.getLog("module.jsp");