diff --git a/common/djangoapps/student/migrations/0035_access_roles.py b/common/djangoapps/student/migrations/0035_access_roles.py index a29679bf4c..bf7bec2dc6 100644 --- a/common/djangoapps/student/migrations/0035_access_roles.py +++ b/common/djangoapps/student/migrations/0035_access_roles.py @@ -20,6 +20,11 @@ class Migration(DataMigration): Converts course_creator, instructor_, staff_, and betatestuser_ to new table """ + # Because we instantiate the module store and the modulestore needs this config table to exist. + depends_on = ( + ("xblock_django", "0001_initial"), + ) + GROUP_ENTRY_RE = re.compile(r'(?Pstaff|instructor|beta_testers|course_creator_group)_?(?P.*)') def forwards(self, orm):