mirror of
https://github.com/OCA/rma.git
synced 2025-02-16 17:11:47 +02:00
10 lines
325 B
Python
10 lines
325 B
Python
# Copyright 2020 Tecnativa - David Vidal
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
from openupgradelib import openupgrade
|
|
|
|
|
|
@openupgrade.migrate()
|
|
def migrate(env, version):
|
|
# Convert Text description field to Html
|
|
openupgrade.convert_field_to_html(env.cr, "rma", "description", "description")
|