From 4e6248066a4a8b1dd1eb2a306d0f45388fbd074c Mon Sep 17 00:00:00 2001 From: Robert Raposa Date: Wed, 22 Apr 2020 10:01:31 -0400 Subject: [PATCH] fix student squash migrations (#23783) There was a missing migration from the original squash. --- .../migrations/0001_squashed_0031_auto_20200317_1122.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/common/djangoapps/student/migrations/0001_squashed_0031_auto_20200317_1122.py b/common/djangoapps/student/migrations/0001_squashed_0031_auto_20200317_1122.py index b1f5f6eb7f..22ef19f0c4 100644 --- a/common/djangoapps/student/migrations/0001_squashed_0031_auto_20200317_1122.py +++ b/common/djangoapps/student/migrations/0001_squashed_0031_auto_20200317_1122.py @@ -516,4 +516,10 @@ class Migration(migrations.Migration): 'abstract': False, }, ), + migrations.AlterField( + model_name='courseenrollment', + name='course', + field=models.ForeignKey(db_constraint=False, on_delete=django.db.models.deletion.DO_NOTHING, + to='course_overviews.CourseOverview'), + ), ]