Skip to content
Snippets Groups Projects
0008_populate_idverificationaggregate.py 668 B
Newer Older
# Generated by Django 1.11.12 on 2018-04-11 19:15
Stu Young's avatar
Stu Young committed

from django.db import migrations, models


def populate_id_verification_aggregate(apps, schema_editor):
    """
    The code from this migration was removed because it caused a spike in database errors
    when it was run in the edX production environment. More details can be found here:
    https://openedx.atlassian.net/browse/ENT-969
    """
    pass

class Migration(migrations.Migration):

    dependencies = [
        ('verify_student', '0007_idverificationaggregate'),
    ]

    operations = [
        migrations.RunPython(populate_id_verification_aggregate, reverse_code=migrations.RunPython.noop),
    ]