summaryrefslogtreecommitdiff
path: root/tests/modeltests/proxy_model_inheritance/app2/models.py
diff options
context:
space:
mode:
authorKaren Tracey <kmtracey@gmail.com>2010-03-21 20:29:11 +0000
committerKaren Tracey <kmtracey@gmail.com>2010-03-21 20:29:11 +0000
commit72ea8fc4eb79d4dfbbbf65161486c06f411ab8c6 (patch)
tree7e7a973adc77a8996ad57196cf71eb5fa01fe7e6 /tests/modeltests/proxy_model_inheritance/app2/models.py
parentf88c2f16e84703cff225e162297a6bcedebe8910 (diff)
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
Diffstat (limited to 'tests/modeltests/proxy_model_inheritance/app2/models.py')
-rw-r--r--tests/modeltests/proxy_model_inheritance/app2/models.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/modeltests/proxy_model_inheritance/app2/models.py b/tests/modeltests/proxy_model_inheritance/app2/models.py
new file mode 100644
index 0000000000..549cd07bd2
--- /dev/null
+++ b/tests/modeltests/proxy_model_inheritance/app2/models.py
@@ -0,0 +1,4 @@
+from django.db import models
+
+class NiceModel(models.Model):
+ pass