Commit efa7556f by jkj

length changes

git-svn-id: https://dev.intra.insomnia.fi/svn/trunk@48 8cf89bec-f6a3-4178-919f-364fb3449fe5
1 parent 15d053eb
...@@ -45,9 +45,9 @@ public class Bill implements Serializable { ...@@ -45,9 +45,9 @@ public class Bill implements Serializable {
@Column(name = "paid_date") @Column(name = "paid_date")
@Temporal(TemporalType.TIMESTAMP) @Temporal(TemporalType.TIMESTAMP)
private Date paidDate; private Date paidDate;
@Column(name = "reference_number", length = 2147483647) @Column(name = "reference_number")
private String referenceNumber; private String referenceNumber;
@Column(name = "notes", length = 2147483647) @Column(name = "notes")
private String notes; private String notes;
@OneToMany(mappedBy = "billsId") @OneToMany(mappedBy = "billsId")
private List<BillLine> billLineList; private List<BillLine> billLineList;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!