This website requires JavaScript.
Explore
Help
Sign In
test0908
/
django
Watch
1
Star
0
Fork
You've already forked django
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
101b6e13e3
django
/
tests
/
modeltests
/
proxy_model_inheritance
/
app2
/
models.py
6 lines
71 B
Python
Raw
Normal View
History
Unescape
Escape
Refs: #12286 -- Add a test to verify that a proxied model's table is created in a situation where it did not used to be. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12828 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-22 04:29:11 +08:00
from
django
.
db
import
models
Convert all modeltests to use absolute imports, rather than relative ones. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16975 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-10-14 02:04:12 +08:00
Refs: #12286 -- Add a test to verify that a proxied model's table is created in a situation where it did not used to be. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12828 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-22 04:29:11 +08:00
class
NiceModel
(
models
.
Model
)
:
pass