3_auto.py 268 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

    dependencies = [("migrations", "2_auto")]

    operations = [
12
        migrations.RunPython(migrations.RunPython.noop)
13
    ]