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'
|