mirror of
https://github.com/django/django.git
synced 2024-12-24 10:05:46 +00:00
77caeaea88
Thanks Jaap Roes for the report.
9 lines
154 B
Python
9 lines
154 B
Python
from django.db import models
|
|
|
|
|
|
class Foo(models.Model):
|
|
name = models.CharField(max_length=255)
|
|
|
|
class Meta:
|
|
app_label = 'app_unmigrated'
|