[IMP] runbot: add active field on runbot config

There are many configurations which we do not care about but we would
rather not delete them.
This commit is contained in:
William Braeckman 2025-03-05 15:35:06 +01:00
parent 669f2be60c
commit 3f186b184f

View File

@ -45,6 +45,7 @@ class Config(models.Model):
_inherit = "mail.thread"
name = fields.Char('Config name', required=True, tracking=True, help="Unique name for config please use trigram as postfix for custom configs")
active = fields.Boolean(default=True)
description = fields.Char('Config description')
step_order_ids = fields.One2many('runbot.build.config.step.order', 'config_id', copy=True)