From bb9242f49e9469925a5c5a0e05bf06bd4b4ce904 Mon Sep 17 00:00:00 2001 From: Xavier-Do Date: Tue, 5 Nov 2024 09:51:47 +0100 Subject: [PATCH] [FIX] runbot: remove unaccent see https://github.com/odoo/odoo/pull/139568 --- runbot/models/build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runbot/models/build.py b/runbot/models/build.py index bf787b00..220d8812 100644 --- a/runbot/models/build.py +++ b/runbot/models/build.py @@ -215,9 +215,9 @@ class BuildResult(models.Model): string='Build type') parent_id = fields.Many2one('runbot.build', 'Parent Build', index=True) - parent_path = fields.Char('Parent path', index=True, unaccent=False) - top_parent = fields.Many2one('runbot.build', compute='_compute_top_parent') - ancestors = fields.Many2many('runbot.build', compute='_compute_ancestors') + parent_path = fields.Char('Parent path', index=True) + top_parent = fields.Many2one('runbot.build', compute='_compute_top_parent') + ancestors = fields.Many2many('runbot.build', compute='_compute_ancestors') # should we add a has children stored boolean? children_ids = fields.One2many('runbot.build', 'parent_id')