summaryrefslogtreecommitdiff
path: root/tests/admin_scripts/another_app_waiting_migration/models.py
blob: c089cb64e6e6134b74710af24072b8c484ed64f1 (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'