mirror of
https://gitlab.com/flectra-community/server-ux.git
synced 2024-11-15 02:32:06 +00:00
12 lines
320 B
Python
12 lines
320 B
Python
|
# Copyright 2017 Eficent <http://www.eficent.com>
|
||
|
# 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, 'date_range', 'migrations/11.0.2.0.0/noupdate_changes.xml',
|
||
|
)
|