14 lines
399 B
Python
14 lines
399 B
Python
# Copyright 2017 Akretion (http://www.akretion.com).
|
|
# @author Sébastien BEAU <sebastien.beau@akretion.com>
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class StorageFile(models.Model):
|
|
_inherit = "storage.file"
|
|
|
|
file_type = fields.Selection(
|
|
selection_add=[("thumbnail", "Thumbnail")], ondelete={"thumbnail": "set null"}
|
|
)
|