From 35fb316970d1a5a88c76f8e8b0ca75cc37015400 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Mon, 26 Apr 2021 16:05:26 +0200 Subject: [PATCH] [FIX] account_payment_order: Remove old migration scripts --- .../migrations/13.0.1.0.0/noupdate_changes.xml | 18 ------------------ .../migrations/13.0.1.0.0/post-migration.py | 11 ----------- 2 files changed, 29 deletions(-) delete mode 100644 account_payment_order/migrations/13.0.1.0.0/noupdate_changes.xml delete mode 100644 account_payment_order/migrations/13.0.1.0.0/post-migration.py diff --git a/account_payment_order/migrations/13.0.1.0.0/noupdate_changes.xml b/account_payment_order/migrations/13.0.1.0.0/noupdate_changes.xml deleted file mode 100644 index c0c9f5870..000000000 --- a/account_payment_order/migrations/13.0.1.0.0/noupdate_changes.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - ['|',('company_id','=',False),('company_id','in',company_ids)] - - - ['|',('company_id','=',False),('company_id','in',company_ids)] - - - ['|',('company_id','=',False),('company_id','in',company_ids)] - - diff --git a/account_payment_order/migrations/13.0.1.0.0/post-migration.py b/account_payment_order/migrations/13.0.1.0.0/post-migration.py deleted file mode 100644 index a49b21956..000000000 --- a/account_payment_order/migrations/13.0.1.0.0/post-migration.py +++ /dev/null @@ -1,11 +0,0 @@ -# Copyright 2020 Tecnativa - Pedro M. Baeza -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). - -from openupgradelib import openupgrade # pylint: disable=W7936 - - -@openupgrade.migrate() -def migrate(env, version): - openupgrade.load_data( - env.cr, "account_payment_order", "migrations/13.0.1.0.0/noupdate_changes.xml" - )