Skip to content

Commit

Permalink
Merge PR #914 into 15.0
Browse files Browse the repository at this point in the history
Signed-off-by yajo
  • Loading branch information
OCA-git-bot committed Aug 8, 2024
2 parents 008a975 + dfc6bc4 commit 1643bdc
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions base_comment_template/migrations/15.0.1.1.0/pre-migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,20 @@

@openupgrade.migrate()
def migrate(env, version):
openupgrade.logged_query(
env.cr, "ALTER TABLE base_comment_template ADD COLUMN IF NOT EXISTS models text"
)
openupgrade.logged_query(
env.cr,
"""
UPDATE base_comment_template template
SET models = (
SELECT string_agg(model.model, ',')
FROM base_comment_template_ir_model_rel AS rel
JOIN ir_model AS model ON rel.ir_model_id = model.id
WHERE rel.base_comment_template_id = template.id
if openupgrade.table_exists(env.cr, "base_comment_template_ir_model_rel"):
openupgrade.logged_query(
env.cr,
"ALTER TABLE base_comment_template ADD COLUMN IF NOT EXISTS models text",
)
openupgrade.logged_query(
env.cr,
"""
UPDATE base_comment_template template
SET models = (
SELECT string_agg(model.model, ',')
FROM base_comment_template_ir_model_rel AS rel
JOIN ir_model AS model ON rel.ir_model_id = model.id
WHERE rel.base_comment_template_id = template.id
)
""",
)
""",
)

0 comments on commit 1643bdc

Please sign in to comment.