mirror of
https://github.com/Hopiu/django.git
synced 2026-03-18 06:50:24 +00:00
9 lines
173 B
Python
9 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'
|