mirror of
https://github.com/bringout/oca-project.git
synced 2026-04-18 14:01:59 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
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})
|