Remove schema types in annotation

This commit is contained in:
Martin Stockhammer 2016-12-28 19:52:28 +01:00
parent 09b5fab0d2
commit 96b6771e7f
1 changed files with 2 additions and 2 deletions

View File

@ -37,9 +37,9 @@ public class JpaResource implements Resource, Serializable {
@Id
@Column(name="IDENTIFIER")
private String identifier;
@Column(name="PATTERN", nullable = false, columnDefinition = "CHAR(1)")
@Column(name="PATTERN", nullable = false)
private Boolean pattern = false;
@Column(name="PERMANENT", nullable = false, columnDefinition = "CHAR(1)")
@Column(name="PERMANENT", nullable = false)
private Boolean permanent = false;