From 62189afec3e8f9a211747d423b49da8f8a3d6190 Mon Sep 17 00:00:00 2001 From: Arunmozhi Date: Thu, 6 Jul 2023 16:46:34 +0530 Subject: [PATCH] fix: update the help text in the db migration --- enterprise/migrations/0175_auto_20230704_0740.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/enterprise/migrations/0175_auto_20230704_0740.py b/enterprise/migrations/0175_auto_20230704_0740.py index dc84c483f0..ef0b3d8272 100644 --- a/enterprise/migrations/0175_auto_20230704_0740.py +++ b/enterprise/migrations/0175_auto_20230704_0740.py @@ -13,11 +13,11 @@ class Migration(migrations.Migration): migrations.AddField( model_name='enterprisecustomer', name='hide_course_price_when_zero', - field=models.BooleanField(default=False, help_text="Hides the course's price from the enrollment page when it is Zero, either by itself or due to a discount."), + field=models.BooleanField(default=False, help_text='Specify whether course cost should be hidden in the landing page when the final price is zero.'), ), migrations.AddField( model_name='historicalenterprisecustomer', name='hide_course_price_when_zero', - field=models.BooleanField(default=False, help_text="Hides the course's price from the enrollment page when it is Zero, either by itself or due to a discount."), + field=models.BooleanField(default=False, help_text='Specify whether course cost should be hidden in the landing page when the final price is zero.'), ), ]