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

OO-2768: make the lastModified date of info message updatable (patch S. Clemenz)

parent ae8655fd
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ public class InfoMessageImpl implements InfoMessage, CreateInfo, Persistable {
@Column(name="creationdate", nullable=false, insertable=true, updatable=false)
private Date creationDate;
@Temporal(TemporalType.TIMESTAMP)
@Column(name="modificationdate", nullable=true, insertable=true, updatable=false)
@Column(name="modificationdate", nullable=true, insertable=true, updatable=true)
private Date modificationDate;
@Column(name="title", nullable=true, insertable=true, updatable=true)
......
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