mirror of
https://github.com/bringout/oca-maintenance.git
synced 2026-04-26 01:42:00 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
326 B
Python
10 lines
326 B
Python
# Copyright 2025 Tecnativa - Víctor Martínez
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
from openupgradelib import openupgrade
|
|
|
|
|
|
@openupgrade.migrate()
|
|
def migrate(env, version):
|
|
openupgrade.load_data(
|
|
env.cr, "maintenance_timesheet", "migrations/16.0.2.1.0/noupdate_changes.xml"
|
|
)
|