mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
The previous adaptation was not correct due to: - The old XML-ID is already missing on post stage. - There's now only one group, so no need of all the imply + group assignation stuff like in previous version.
15 lines
322 B
Python
15 lines
322 B
Python
from openupgradelib import openupgrade
|
|
|
|
|
|
@openupgrade.migrate()
|
|
def migrate(env, version):
|
|
openupgrade.rename_xmlids(
|
|
env.cr,
|
|
[
|
|
(
|
|
"web_disable_export_group.group_export_data",
|
|
"web_disable_export_group.group_export_xlsx_data",
|
|
)
|
|
],
|
|
)
|