mirror of
https://github.com/bringout/oca-workflow-process.git
synced 2026-04-19 06:12:00 +02:00
9 lines
281 B
Python
9 lines
281 B
Python
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from openupgradelib import openupgrade
|
|
|
|
|
|
@openupgrade.migrate()
|
|
def migrate(env, version):
|
|
"""Set current Project Status as not company limit"""
|
|
env["project.status"].search([]).write({"company_id": False})
|