From 4ebccc4d3e11264da6a019bdae49328be1735043 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Wed, 28 May 2025 20:20:01 +0530 Subject: [PATCH] Update is_active help text in pipeline migration Signed-off-by: Keshav Priyadarshi --- .../migrations/0092_pipelineschedule_pipelinerun.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vulnerabilities/migrations/0092_pipelineschedule_pipelinerun.py b/vulnerabilities/migrations/0092_pipelineschedule_pipelinerun.py index f0bda53f4..60d528990 100644 --- a/vulnerabilities/migrations/0092_pipelineschedule_pipelinerun.py +++ b/vulnerabilities/migrations/0092_pipelineschedule_pipelinerun.py @@ -1,4 +1,4 @@ -# Generated by Django 4.2.20 on 2025-05-26 11:38 +# Generated by Django 4.2.20 on 2025-05-28 14:48 import django.core.validators from django.db import migrations, models @@ -35,7 +35,7 @@ class Migration(migrations.Migration): models.BooleanField( db_index=True, default=True, - help_text="When set to True (Yes), this Pipeline is active. When set to False (No), this Pipeline is inactive and not run.", + help_text="When set to True, this Pipeline is active. When set to False, this Pipeline is inactive and not run.", null=True, ), ),