Skip to content
Snippets Groups Projects
Commit be9b18fc authored by uhensler's avatar uhensler
Browse files

OO-4630: Column name fix

parent 5e4ea271
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@ public class AppointmentImpl implements Persistable, Appointment {
@Column(name="a_status", nullable=false, insertable=true, updatable=true)
private Status status;
@Temporal(TemporalType.TIMESTAMP)
@Column(name="o_status_mod_date", nullable=false, insertable=true, updatable=true)
@Column(name="a_status_mod_date", nullable=false, insertable=true, updatable=true)
private Date statusModified;
@Column(name="a_start", nullable=true, insertable=true, updatable=true)
private Date start;
......
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