Skip to content
Snippets Groups Projects
Commit 4b95ad86 authored by srosse's avatar srosse
Browse files

OO-3615: last modified date of user rating can be null on old

installations
parent 759f8129
No related branches found
No related tags found
No related merge requests found
...@@ -76,7 +76,7 @@ public class UserRatingImpl implements Persistable, CreateInfo, UserRating { ...@@ -76,7 +76,7 @@ public class UserRatingImpl implements Persistable, CreateInfo, UserRating {
private Date creationDate; private Date creationDate;
@Temporal(TemporalType.TIMESTAMP) @Temporal(TemporalType.TIMESTAMP)
@Column(name="lastmodified", nullable=false, insertable=true, updatable=true) @Column(name="lastmodified", nullable=true, insertable=true, updatable=true)
private Date modifiedDate; private Date modifiedDate;
@Column(name="resname", nullable=false, insertable=true, updatable=false) @Column(name="resname", nullable=false, insertable=true, updatable=false)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment