[IMP] base_external_dbsource: Add company field to backend

fw-port from b7f439e04a
This commit is contained in:
sergio.teruel
2018-09-07 11:35:46 +02:00
committed by Pedro M. Baeza
parent 66ea86aa8c
commit c031fde4d5
6 changed files with 46 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
# 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"
)