On Wednesday, July 6, 2011 2:04:26 PM UTC-4, Luis Goncalves wrote: 
>
>           db.table_user.email.writable=False # gives error
>
 
I think this should be db.auth_user, not db.table_user. Note, the name of 
the auth user table (which defaults to 'auth_user') is stored in 
auth.settings.table_user_name, so you could also do:
 
db[auth.settings.table_user_name].email.writable=False
 
 
Anthony

Reply via email to