diff --git a/.github/workflows/capture_new_migrations.yml b/.github/workflows/capture_new_migrations.yml index 23de46be09a7..8f94f4f96289 100644 --- a/.github/workflows/capture_new_migrations.yml +++ b/.github/workflows/capture_new_migrations.yml @@ -158,6 +158,7 @@ jobs: echo "Running the LMS migrations." ./manage.py lms makemigrations ./manage.py lms migrate social_django + echo "Running the CMS migrations." ./manage.py cms makemigrations # ./manage.py cms migrate diff --git a/openedx/core/djangoapps/credit/models.py b/openedx/core/djangoapps/credit/models.py index f29f5a5a02a5..79473bdb3a22 100644 --- a/openedx/core/djangoapps/credit/models.py +++ b/openedx/core/djangoapps/credit/models.py @@ -142,6 +142,7 @@ class CreditProvider(TimeStampedModel): ) display_name_testing = models.CharField( + null=True, max_length=255, help_text=gettext_lazy("Name of the credit provider displayed to users") )