mirror of
https://github.com/odoo/runbot.git
synced 2025-03-15 23:45:44 +07:00
[FIX] runbot: prevent crash with invalid exception
This commit is contained in:
parent
08016333fe
commit
ec440e61f7
@ -8,7 +8,7 @@ class UpgradeExceptions(models.Model):
|
|||||||
_description = 'Upgrade exception'
|
_description = 'Upgrade exception'
|
||||||
|
|
||||||
active = fields.Boolean('Active', default=True)
|
active = fields.Boolean('Active', default=True)
|
||||||
elements = fields.Text('Elements')
|
elements = fields.Text('Elements', required=True)
|
||||||
bundle_id = fields.Many2one('runbot.bundle', index=True)
|
bundle_id = fields.Many2one('runbot.bundle', index=True)
|
||||||
info = fields.Text('Info')
|
info = fields.Text('Info')
|
||||||
team_id = fields.Many2one('runbot.team', 'Assigned team', index=True)
|
team_id = fields.Many2one('runbot.team', 'Assigned team', index=True)
|
||||||
|
Loading…
Reference in New Issue
Block a user