authdate property modify

This commit is contained in:
geek 2017-06-23 17:29:59 +09:00
parent d623331e99
commit 3936d7d11b

View File

@ -48,7 +48,7 @@ public class EmailAuth {
} }
@Basic @Basic
@Column(name = "AUTH_CONFIRM_DATE", nullable = false, columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP", insertable = false, updatable = false) @Column(name = "AUTH_CONFIRM_DATE", nullable = true, columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP", insertable = true, updatable = false)
public Timestamp getAuthConfirmDate() { public Timestamp getAuthConfirmDate() {
return authConfirmDate; return authConfirmDate;
} }