7 lines
170 B
Python
7 lines
170 B
Python
|
|
from odoo import api, SUPERUSER_ID
|
||
|
|
|
||
|
|
|
||
|
|
def migrate(cr, version):
|
||
|
|
env = api.Environment(cr, SUPERUSER_ID, {})
|
||
|
|
env["sports.patient"].search([]).recompute_followers()
|