mirror of
https://github.com/django/django.git
synced 2025-07-18 00:29:13 +00:00
Thanks Jaap Roes for the report. Backport of 77caeaea888d1744416b213036ff29699758de76 from master
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'
|