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.
 
 
 
 

11 lines
259 B

# -*- coding: utf-8 -*-
import logging
from odoo import api
logger = logging.getLogger('MIG compacted')
def migrate(cr, v):
with api.Environment.manage():
cr.execute("""UPDATE account_account SET compacted = FALSE WHERE compacted IS NULL;""")