I want to update both auth.user and the auth_user record in the database. Is this the proper way?
user = db(db.auth_user.id == auth.user.id).select().first() user.update_record(key=value) auth.user = user Thanks
I want to update both auth.user and the auth_user record in the database. Is this the proper way?
user = db(db.auth_user.id == auth.user.id).select().first() user.update_record(key=value) auth.user = user Thanks