mirror of
https://github.com/django/django.git
synced 2025-02-08 08:26:13 +00:00
10 lines
173 B
Python
10 lines
173 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'
|