mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
Fixed travis ci log. Improved the code. Improve the description and replaced the attribute 'id' with 'class'.
12 lines
270 B
Python
12 lines
270 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from openerp import models, fields, api
|
|
|
|
class Users(models.Model):
|
|
_name = 'res.users'
|
|
_inherit = 'res.users'
|
|
|
|
signature= fields.Binary(string='Signature')
|
|
|