From 905d18638bf1819c777ba79591b7aadfdc94c6ab Mon Sep 17 00:00:00 2001 From: Kevin Falcone Date: Fri, 1 Apr 2016 22:14:49 -0400 Subject: [PATCH] Allow migrations to run if CCX is enabled Without this, when CCX runs 0003 it'll invoke course_overviews while loading a course, but that table has a model change, and the migration has not run yet. This ensures the course_overviews migration happens first. --- .../ccx/migrations/0003_add_master_course_staff_in_ccx.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lms/djangoapps/ccx/migrations/0003_add_master_course_staff_in_ccx.py b/lms/djangoapps/ccx/migrations/0003_add_master_course_staff_in_ccx.py index a9deb47387..c97449a77b 100644 --- a/lms/djangoapps/ccx/migrations/0003_add_master_course_staff_in_ccx.py +++ b/lms/djangoapps/ccx/migrations/0003_add_master_course_staff_in_ccx.py @@ -64,6 +64,7 @@ class Migration(migrations.Migration): dependencies = [ ('ccx', '0001_initial'), ('ccx', '0002_customcourseforedx_structure_json'), + ('course_overviews','0010_auto_20160329_2317'), # because we use course overview and are in the same release as that table is modified ] operations = [