mirror of https://github.com/django/django.git
8 lines
171 B
Python
8 lines
171 B
Python
|
from django.db import models
|
||
|
|
||
|
from ..admin import foo
|
||
|
class Bar(models.Model):
|
||
|
name = models.CharField(max_length=5)
|
||
|
class Meta:
|
||
|
app_label = 'complex_app'
|