HHH-10311 : Primary key length used in unit test is too long for DB2

This commit is contained in:
Gail Badner 2015-11-20 14:33:57 -08:00
parent d3de746bd9
commit 439dab82d0
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import java.io.Serializable;
@Embeddable
public class PolicyId implements Serializable {
@Column(name="`type`")
@Column(name="`type`", length=32)
String type;
DependentId depPK;
}