Skip to content

Commit

Permalink
fix resultTime declared as not-nullable in STA ObservationEntity
Browse files Browse the repository at this point in the history
  • Loading branch information
SpeckiJ committed May 28, 2020
1 parent 93a2f75 commit 77b7122
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public class ObservationEntity<T> extends AbstractObservationEntity<T> implement
@Column(name = "valid_time_end", length = 29, columnDefinition = "timestamp default NULL")
private Date validTimeEnd;

@Column(name = "result_time", nullable = false, length = 29, columnDefinition = "timestamp")
@Column(name = "result_time", nullable = true, length = 29, columnDefinition = "timestamp")
private Date resultTime;

// TODO(specki): Check if lazy fetching can be used here
Expand Down

0 comments on commit 77b7122

Please sign in to comment.