Skip to content

Commit

Permalink
fix: update the help text in the db migration
Browse files Browse the repository at this point in the history
  • Loading branch information
tecoholic committed Jul 6, 2023
1 parent 9a5761e commit 62189af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions enterprise/migrations/0175_auto_20230704_0740.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.'),
),
]

0 comments on commit 62189af

Please sign in to comment.