django-model-utils/model_utils/tests/models.py
Carl Meyer 2d018ca847 added TimeStampedModel
--HG--
extra : convert_revision : carl%40dirtcircle.com-20090702201429-hph32omqgfgrga52
2009-07-02 16:14:29 -04:00

12 lines
243 B
Python

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