Commit 72ea8fc4 authored by Karen Tracey's avatar Karen Tracey
Browse files

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
parent f88c2f16
Loading
Loading
Loading
Loading
+0 −0

Empty file added.

+0 −0

Empty file added.

+5 −0
Original line number Diff line number Diff line
from app2.models import NiceModel

class ProxyModel(NiceModel):
    class Meta:
        proxy = True
+0 −0

Empty file added.

+4 −0
Original line number Diff line number Diff line
from django.db import models

class NiceModel(models.Model):
    pass
Loading