What is access log fields in odoo ?

 Access Log Fields




when we create any model then some access log fields are automatically set and updated if _log_access is enabled. It can be disabled to avoid creating or updating those fields on tables for which they are not useful.Defaults to the value was set for _auto.

to disabled set False 

access log fields are:
1. create_date : when record created
2. write_date :  when record updated
3. create_uid : Stores who created the record, Many2one to a res.users
4. write_uid : Stores who last updated the record, Many2one to a res.users.

Comments