From 575340cb5288078905161b7ead091e1adf0ff5fb Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Tue, 12 Jan 2021 13:47:17 +0000 Subject: [PATCH] [MIG] privacy_consent: Migration to 13.0 --- privacy_consent/__manifest__.py | 2 +- privacy_consent/migrations/12.0.1.0.0/pre-migrate.py | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) delete mode 100644 privacy_consent/migrations/12.0.1.0.0/pre-migrate.py diff --git a/privacy_consent/__manifest__.py b/privacy_consent/__manifest__.py index 71abc69..4745a89 100644 --- a/privacy_consent/__manifest__.py +++ b/privacy_consent/__manifest__.py @@ -4,7 +4,7 @@ "name": "Privacy - Consent", "summary": "Allow people to explicitly accept or reject inclusion " "in some activity, GDPR compliant", - "version": "12.0.1.1.0", + "version": "13.0.1.0.0", "development_status": "Production/Stable", "category": "Privacy", "website": "https://github.com/OCA/management-activity", diff --git a/privacy_consent/migrations/12.0.1.0.0/pre-migrate.py b/privacy_consent/migrations/12.0.1.0.0/pre-migrate.py deleted file mode 100644 index f5f19ce..0000000 --- a/privacy_consent/migrations/12.0.1.0.0/pre-migrate.py +++ /dev/null @@ -1,10 +0,0 @@ -# Copyright 2019 Tecnativa - Jairo Llopis -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -from openupgradelib.openupgrade import rename_xmlids - - -def migrate(cr, version): - """Use a better xmlid for the provided server action.""" - rename_xmlids(cr, [ - ("privacy_consent.update_opt_out", "privacy_consent.sync_blacklist"), - ])