mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-23 05:52:06 +02:00
10 lines
215 B
Python
10 lines
215 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class ResUsersLog(models.Model):
|
|
_inherit = 'res.users.log'
|
|
|
|
create_uid = fields.Integer(index=True)
|
|
ip = fields.Char(string="IP Address")
|