mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
10 lines
283 B
Python
10 lines
283 B
Python
# Part of Hibou Suite Professional. See LICENSE_PROFESSIONAL file for full copyright and licensing details.
|
|
|
|
|
|
def migrate(cr, version):
|
|
cr.execute('''
|
|
UPDATE signifyd_case
|
|
SET checkpoint_action = 'ACCEPT'
|
|
WHERE guarantee_disposition = 'APPROVED'
|
|
''')
|