Increase transaction type field max length

This commit is contained in:
Everett Sochowski 2015-03-02 12:27:31 +01:00
parent 6d3c1762aa
commit c551c3b354

View File

@ -21,7 +21,7 @@ class MappedTransaction extends LongKeyedMapper[MappedTransaction] with IdPK wit
}
//TODO: review the need for this
object transactionUUID extends MappedUUID(this)
object transactionType extends MappedString(this, 20)
object transactionType extends MappedString(this, 100)
//amount/new balance use the smallest unit of currency! e.g. cents, yen, pence, øre, etc.
object amount extends MappedLong(this)