diff -r 5ff1fc726848 -r c6bca38c1cbf parts/django/tests/regressiontests/datatypes/models.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/parts/django/tests/regressiontests/datatypes/models.py Sat Jan 08 11:20:57 2011 +0530 @@ -0,0 +1,25 @@ +""" +This is a basic model to test saving and loading boolean and date-related +types, which in the past were problematic for some database backends. +""" + +from django.db import models + +class Donut(models.Model): + name = models.CharField(max_length=100) + is_frosted = models.BooleanField(default=False) + has_sprinkles = models.NullBooleanField() + baked_date = models.DateField(null=True) + baked_time = models.TimeField(null=True) + consumed_at = models.DateTimeField(null=True) + review = models.TextField() + + class Meta: + ordering = ('consumed_at',) + + def __str__(self): + return self.name + +class RumBaba(models.Model): + baked_date = models.DateField(auto_now_add=True) + baked_timestamp = models.DateTimeField(auto_now_add=True)