mirror of
https://gitlab.com/flectra-community/account-financial-reporting.git
synced 2024-11-15 02:02:04 +00:00
11 lines
323 B
Python
11 lines
323 B
Python
# Copyright 2024 Tecnativa - Pedro M. Baeza
|
|
# 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, "mis_builder_cash_flow", "migrations/16.0.1.0.0/noupdate_changes.xml"
|
|
)
|