You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
405 B
12 lines
405 B
# -*- coding: utf-8 -*-
|
|
# © 2017 Akretion, Mourad EL HADJ MIMOUNE
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from openupgradelib import openupgrade
|
|
|
|
|
|
@openupgrade.migrate(use_env=True)
|
|
def migrate(env, version):
|
|
cr = env.cr
|
|
openupgrade.rename_tables(cr, [('sale_exception', 'exception_rule')])
|
|
openupgrade.rename_models(cr, [('sale.exception', 'exception.rule')])
|