From b4708684e10b73cde7f398ba04a161141625430d Mon Sep 17 00:00:00 2001 From: Awais Qureshi Date: Wed, 1 Nov 2023 15:21:12 +0500 Subject: [PATCH] build: capturing new migrations. --- .github/workflows/capture_new_migrations.yml | 1 + openedx/core/djangoapps/credit/models.py | 1 + 2 files changed, 2 insertions(+) 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") )