[IMP] runbot: add a reviewers field

This commit is contained in:
Christophe Monniez 2021-07-06 14:57:52 +02:00 committed by xdo
parent 87214a82a6
commit 363c488c10

View File

@ -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')