django-model-utils/model_utils/tests/models.py
Carl Meyer 3247ac5d4b initial import (with InheritanceCastModel)
--HG--
extra : convert_revision : carl%40dirtcircle.com-20090702180302-idhig8pzmbv8nv7l
2009-07-02 14:03:02 -04:00

10 lines
181 B
Python

from django.db import models
from model_utils.models import InheritanceCastModel
class InheritParent(InheritanceCastModel):
pass
class InheritChild(InheritParent):
pass