Skip to content

Commit

Permalink
[OU-ADD] mis_builder: Add migration script to set the value of the an…
Browse files Browse the repository at this point in the history
…alytic_domain field

TT50696
  • Loading branch information
victoralmau committed Oct 1, 2024
1 parent a71f286 commit 863d8c2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions mis_builder/migrations/17.0.1.0.0/post-migration.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Copyright 2024 Tecnativa - Víctor Martínez
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from openupgradelib import openupgrade


@openupgrade.migrate()
def migrate(env, version):
"""Set the value of the analytic_domain field."""
openupgrade.logged_query(
env.cr,
"""
UPDATE mis_report_instance_period
SET analytic_domain = CONCAT('[("analytic_distribution_search", "in", [', analytic_account_id::VARCHAR, '])]')
WHERE analytic_account_id IS NOT NULL
""", # noqa: E501
)
openupgrade.logged_query(
env.cr,
"""
UPDATE mis_report_instance
SET analytic_domain = CONCAT('[("analytic_distribution_search", "in", [', analytic_account_id::VARCHAR, '])]')
WHERE analytic_account_id IS NOT NULL
""", # noqa: E501
)

0 comments on commit 863d8c2

Please sign in to comment.