Hi! I wrote the following:
db.define_table('User',
Field(...),
Field(...),
Field('pass', 'password',
requires=IS_NOT_EMPTY(error_message='Campo obligatorio'),
label='ContraseƱa'))But when i look at the inserted row the password column is not encrypted, is in plain text. Thx!

