Main super-class for regular database-persisted Odoo models.
Odoo models are created by inheriting from this class::
class user(Model):
...
The system will later instantiate the class once per database (on
which the class' module is installed).
Fields
auth_method [selection]:
Extra Authentication Step
change_authorized [boolean]:
Change Authorized
color [integer]:
Color
create_date [readonly; datetime]:
Created on
create_uid [readonly; many2one: res.users]:
Created by
default [required; boolean]:
Default
display_name [readonly; char]:
Display Name
id [readonly; integer]:
ID
name [required; char]:
Name
sequence [integer]:
Default order
write_date [readonly; datetime]:
Last Updated on
write_uid [readonly; many2one: res.users]:
Last Updated by