nephila/djangocms-helper

View on GitHub
tests/test_utils/example1/data/django_0001_initial.py

Summary

Maintainability
A
0 mins
Test Coverage
from django.db import migrations, models


class Migration(migrations.Migration):
    dependencies = []

    operations = [
        migrations.CreateModel(
            name="ExampleModel1",
            fields=[
                ("id", models.AutoField(primary_key=True, serialize=False, verbose_name="ID", auto_created=True)),
            ],
            options={},
            bases=(models.Model,),
        ),
    ]