#2220 - DDL generation of nullable columns expected with nullable Embedded containing non null properties

This commit is contained in:
rbygrave
2021-04-19 21:37:05 +12:00
parent 2d719c5b37
commit bb6ff866c7
7 changed files with 19 additions and 13 deletions
@@ -1,12 +1,16 @@
package org.tests.model.embedded;
import io.ebean.annotation.NotNull;
import javax.persistence.Embeddable;
import java.util.Date;
@Embeddable
public class EEmbDatePeriod {
@NotNull
Date date1;
@NotNull
Date date2;
public Date getDate1() {