From f11afb57a273cfe3a0f71411075b52b4f7c3d809 Mon Sep 17 00:00:00 2001 From: Adeel Khan Date: Wed, 2 Oct 2019 14:39:24 +0500 Subject: [PATCH] Adds migration for simulate publish command A rewording of help text caused django to create a new migration for config model and that was not initially pushed to master. --- .../migrations/0017_auto_20191002_0823.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 openedx/core/djangoapps/content/course_overviews/migrations/0017_auto_20191002_0823.py diff --git a/openedx/core/djangoapps/content/course_overviews/migrations/0017_auto_20191002_0823.py b/openedx/core/djangoapps/content/course_overviews/migrations/0017_auto_20191002_0823.py new file mode 100644 index 0000000000..9a0cbff753 --- /dev/null +++ b/openedx/core/djangoapps/content/course_overviews/migrations/0017_auto_20191002_0823.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.24 on 2019-10-02 08:23 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('course_overviews', '0016_simulatecoursepublishconfig'), + ] + + operations = [ + migrations.AlterField( + model_name='simulatecoursepublishconfig', + name='arguments', + field=models.TextField(blank=True, default=b'', help_text=b'Useful for manually running a Jenkins job. Specify like "--delay 10 --receivers A B C --courses X Y Z".'), + ), + ]