You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
375 B
17 lines
375 B
# Copyright 2020 Ozono Multimedia S.L.L.
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from openupgradelib import openupgrade
|
|
|
|
field_renames = [
|
|
(
|
|
"account.move",
|
|
"account_move",
|
|
"move_type",
|
|
"financial_type",
|
|
),
|
|
]
|
|
|
|
|
|
@openupgrade.migrate()
|
|
def migrate(env, version):
|
|
openupgrade.rename_fields(env, field_renames)
|