summaryrefslogtreecommitdiff
path: root/tests/admin_scripts/another_app_waiting_migration/models.py
blob: be73590caa591544de1b3a0803edd15764e77960 (plain)
1
2
3
4
5
6
7
8
from django.db import models


class Foo(models.Model):
    name = models.CharField(max_length=255)

    class Meta:
        app_label = "another_app_waiting_migration"