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

(cherry picked from commit 439dab82d0)
This commit is contained in:
Gail Badner 2015-11-20 14:33:57 -08:00
parent 780c7c2fb6
commit d5fb3761c6
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;
}