forked from faide/reporting-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] base_comment_template: Incorrect m2m column names + script + av…
…oid FK constraint - The name of the columns were swapped, so better to fix it for avoiding mistakes due to this. - Migration script for detecting the condition and swap column names. - On v12 > v13 migration, include JOINs for avoiding FK constraint, which `ON CONFLICT` clause doesn't protect.
- Loading branch information
1 parent
e82f354
commit a0e7e57
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
base_comment_template/migrations/13.0.3.0.0/pre-migration.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Copyright 2021 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): | ||
if openupgrade.table_exists(env.cr, "base_comment_template_res_partner_rel"): | ||
# Swap column names, as they were incorrect | ||
env.cr.execute( | ||
"ALTER TABLE base_comment_template_res_partner_rel " | ||
"RENAME base_comment_template_id TO temp" | ||
) | ||
env.cr.execute( | ||
"ALTER TABLE base_comment_template_res_partner_rel " | ||
"RENAME res_partner_id TO base_comment_template_id" | ||
) | ||
env.cr.execute( | ||
"ALTER TABLE base_comment_template_res_partner_rel " | ||
"RENAME temp TO res_partner_id" | ||
) |