You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

12 lines
363 B

# -*- coding: utf-8 -*-
# Copyright 2019 Therp BV <https://therp.nl>.
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
# pylint: disable=missing-docstring,unused-argument,invalid-name
def migrate(cr, version):
cr.execute(
"UPDATE res_partner_relation_type"
" SET is_symmetric = False"
" WHERE is_symmetric IS NULL")