From 3f186b184fdaa181240b08517b947e48a0a08127 Mon Sep 17 00:00:00 2001 From: William Braeckman Date: Wed, 5 Mar 2025 15:35:06 +0100 Subject: [PATCH] [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. --- runbot/models/build_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/runbot/models/build_config.py b/runbot/models/build_config.py index 0a4aa155..3b39da4b 100644 --- a/runbot/models/build_config.py +++ b/runbot/models/build_config.py @@ -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)