summaryrefslogtreecommitdiff
path: root/tests/backends/base/app_unmigrated/models.py
blob: 4bb6074a84fc52bddb30d4614c7224e0a04cf99c (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 = "app_unmigrated"