knowledge/document_knowledge/models/ir_attachment.py
Leonardo Donelli 8a6dd6ddb8 Port to v10
2023-12-21 17:04:59 +01:00

9 lines
214 B
Python

from odoo import fields, models
class IrAttachment(models.Model):
_inherit = 'ir.attachment'
# Add index to res_model because filtering on it is a common use case
res_model = fields.Char(index=True)