Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/migrations/test_migrations_squashed_complex/1_auto.py
blob: bf1268806320d53ca22f55ac89a40be4b90b774e (plain)
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):

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