Hi there! I am a bit puzzled by the following problem. In my db.py file I use *string *type for the field. Field('ras', 'string', label=T('Account'), requires=IS_NOT_EMPTY(error_message='you should enter number of your account')), But when I insert some value into this field, for example * 30101810000000000722*, it stores as *3.010181e+019*. What's the matter?
--