why not create a new table for that and reference it to auth_user table?
*e.g.*
*models/db.py*
db.define_table('employee', 
Field('is_auth', 'boolean'),
* Field('auth_user', 'reference auth_user'), *
Field('first_name'), 
Field('last_name'),
Field('email', 'list:string'),  
Field('occupation'),
Field('address', 'text'), 
Field('notes', 'text'), 
Field('basic_salary', 'integer'), 
format = lambda r: '%s %s' % (r.first_name, r.last_name) )

best regards,
stifan

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to