Explicitly declare an SQL type for the userNote field - this (somehow??) stops Persistent from trying to convert it to the Bad UTF-8™
This commit is contained in:
parent
77eb5c1b87
commit
d6654ffc20
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ User
|
||||||
username Text maxlen=190
|
username Text maxlen=190
|
||||||
fullName Text maxlen=500
|
fullName Text maxlen=500
|
||||||
email Text maxlen=190
|
email Text maxlen=190
|
||||||
note Text
|
note Text sqltype=mediumtext
|
||||||
UniqueUsername username
|
UniqueUsername username
|
||||||
UniqueEmail email
|
UniqueEmail email
|
||||||
deriving Typeable
|
deriving Typeable
|
||||||
|
|
Loading…
Reference in a new issue