mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
14 lines
316 B
Python
14 lines
316 B
Python
# Copyright 2020 Tecnativa - Ernesto Tejeda
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
|
|
def migrate(cr, version):
|
|
if not version:
|
|
return
|
|
cr.execute(
|
|
"""
|
|
DELETE FROM ir_model_relation
|
|
WHERE name = 'global_discount_res_partner_rel';
|
|
"""
|
|
)
|