mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-25 03:31:59 +02:00
9 lines
171 B
Python
9 lines
171 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class ResUsersLog(models.Model):
|
|
_inherit = 'res.users.log'
|
|
|
|
ip = fields.Char(string="IP Address")
|