Skip to content
Snippets Groups Projects
Commit 0b4986fe authored by User expired's avatar User expired
Browse files

Revert "openolat#165: allow the 'latestemailed' column to be set to null as...

Revert "openolat#165: allow the 'latestemailed' column to be set to null as this is done in the migrateInfosNotificationsNotDesired migration (14.2)" as the issue is solved upstream by setting the field in the upgrade process.

This reverts commit aa0f3e46.
parent c9e45b53
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,7 @@ public class SubscriberImpl implements Subscriber, CreateInfo, Persistable {
// when the user latest received an email concerning this subscription; may be null if no email has been sent yet
@Temporal(TemporalType.TIMESTAMP)
@Column(name="latestemailed", nullable=true, insertable=true, updatable=true)
@Column(name="latestemailed", nullable=false, insertable=true, updatable=true)
private Date latestEmailed;
@Column(name="subenabled", nullable=false, 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