mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
12 lines
350 B
Python
12 lines
350 B
Python
# Copyright 2022 Tecnativa - Pedro M. Baeza
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from openupgradelib import openupgrade # pylint: disable=W7936
|
|
|
|
|
|
@openupgrade.migrate()
|
|
def migrate(env, version):
|
|
openupgrade.load_data(
|
|
env.cr, "base_external_dbsource", "migrations/13.0.2.0.0/noupdate_changes.xml"
|
|
)
|