Commit ea5b41cd by Feanil Patel

Merge pull request #8898 from edx/feanil/fix_student_migrations

Update migration dependency.
parents 2e7da198 4ae4e25f
......@@ -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'(?P<role_id>staff|instructor|beta_testers|course_creator_group)_?(?P<course_id_string>.*)')
def forwards(self, orm):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment