mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
14 lines
357 B
Python
14 lines
357 B
Python
# Copyright 2022 Tecnativa - Víctor Martínez
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from openupgradelib import openupgrade
|
|
|
|
|
|
@openupgrade.migrate()
|
|
def migrate(env, version):
|
|
openupgrade.load_data(
|
|
env.cr,
|
|
"account_payment_order_notification",
|
|
"migrations/14.0.1.2.0/noupdate_changes.xml",
|
|
)
|