Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docsource/modules180-190.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Module coverage 18.0 -> 19.0
+---------------------------------------------------+----------------------+-------------------------------------------------+
| fleet | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| gamification | | |
| gamification |Done | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| gamification_sale_crm | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright 2026 Tecnativa - Pilar Vargas
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from openupgradelib import openupgrade


@openupgrade.migrate()
def migrate(env, version):
openupgrade.load_data(env, "gamification", "19.0.1.0/noupdate_changes.xml")
openupgrade.delete_record_translations(
env.cr,
"gamification",
["email_template_badge_received", "mail_template_data_new_rank_reached"],
["body_html"],
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---Models in module 'gamification'---
---Fields in module 'gamification'---
gamification / gamification.badge.user / message_follower_ids (one2many): NEW relation: mail.followers
gamification / gamification.badge.user / message_ids (one2many) : NEW relation: mail.message
# NOTHING TO DO: only new mail/chatter fields were added.
---XML records in module 'gamification'---
Loading