Re: Denormalisation, magic, and is it really that useful?

2008-09-22 Thread Winsley von Spee
Hi, this would be very useful for a lot of use cases. View counts that originally came from a foo viewed bar table with timestamps for every viewer, or storing some sort of sum calculation from a list of related objects. Basically all that stuff you would display in an "overview table" of some so

Re: TimestampField

2007-11-12 Thread Winsley von Spee
'%s couldn`t be converted to datetime' % value) On Fri, 09 Nov 2007 12:08:23 +1100 Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > On Thu, 2007-11-08 at 16:40 +0100, Winsley von Spee wrote: > > Hello, > > > > I h

TimestampField

2007-11-08 Thread Winsley von Spee
Hello, I have implemeted a TimestampField that maps betweem unixtimestamps and datetime.datetime objects, so i can use Datetime in Django while not having to convert all timestamps to datetime fields yet. I need that for downwards compatibility for an old application that uses the same database.