Change tests for better portability - Internal changes for DB Migration / DDL generation #369

This commit is contained in:
Robin Bygrave
2015-08-06 05:28:25 +12:00
parent 689d201b04
commit d1584bed40
8 changed files with 29 additions and 37 deletions
@@ -24,7 +24,7 @@ public class EInvoice {
@Version
Long version;
Date date;
Date invoiceDate;
State state;
@@ -66,12 +66,12 @@ public class EInvoice {
this.state = state;
}
public Date getDate() {
return date;
public Date getInvoiceDate() {
return invoiceDate;
}
public void setDate(Date date) {
this.date = date;
public void setInvoiceDate(Date invoiceDate) {
this.invoiceDate = invoiceDate;
}
public EPerson getPerson() {