From 363c488c10eb7033191054535ecca9f2a875ff57 Mon Sep 17 00:00:00 2001 From: Christophe Monniez Date: Tue, 6 Jul 2021 14:57:52 +0200 Subject: [PATCH] [IMP] runbot: add a reviewers field --- runbot/models/branch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/runbot/models/branch.py b/runbot/models/branch.py index b929018e..ddec5757 100644 --- a/runbot/models/branch.py +++ b/runbot/models/branch.py @@ -27,6 +27,7 @@ class Branch(models.Model): pull_head_name = fields.Char(compute='_compute_branch_infos', string='PR HEAD name', readonly=1, store=True) pull_head_remote_id = fields.Many2one('runbot.remote', 'Pull head repository', compute='_compute_branch_infos', store=True, index=True) target_branch_name = fields.Char(compute='_compute_branch_infos', string='PR target branch', store=True) + reviewers = fields.Char('Reviewers') reflog_ids = fields.One2many('runbot.ref.log', 'branch_id')