From 58780a503b00370faf1785d0c67c53a5ecccc306 Mon Sep 17 00:00:00 2001 From: Mitchell Admin Date: Thu, 8 Jul 2021 17:13:53 +0000 Subject: [PATCH] :arrow_up::one::four: OCA/odoo-module-migrator close #340 > Made via .github/workflows/DINAR-PORT.yml --- email_headers/__manifest__.py | 2 +- email_headers/migrations/12.0.1.2.0/post-migration.py | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 email_headers/migrations/12.0.1.2.0/post-migration.py diff --git a/email_headers/__manifest__.py b/email_headers/__manifest__.py index e8768e4..fc8700e 100644 --- a/email_headers/__manifest__.py +++ b/email_headers/__manifest__.py @@ -21,7 +21,7 @@ # noinspection PyStatementEffect { "name": "Robust Mails", - "version": "13.0.1.2.0", + "version": "14.0.1.2.0", "license": "AGPL-3", "summary": """ Adds fields on outgoing email server that allows you to better control the diff --git a/email_headers/migrations/12.0.1.2.0/post-migration.py b/email_headers/migrations/12.0.1.2.0/post-migration.py deleted file mode 100644 index e6fb436..0000000 --- a/email_headers/migrations/12.0.1.2.0/post-migration.py +++ /dev/null @@ -1,9 +0,0 @@ -def migrate(cr, version): - if not version: - return - - cr.execute( - "UPDATE ir_mail_server " - "SET reply_to_method = 'alias' " - "WHERE reply_to_alias IS TRUE" - )