Re: models.NullBooleanField()

2007-10-31 Thread Ryan Kanno
s out that setting a field to "models.NullBooleanField(blank=True, > >null=True,)" causes all sorts of bad things to happen as Django tries to > > insert '' intobooleanfields... I know that NullBooleanField should > > probably not have these switches (I did it by mistake) but I

Re: models.NullBooleanField()

2007-10-03 Thread Malcolm Tredinnick
On Wed, 2007-10-03 at 14:30 +0300, Peter Nixon wrote: > Hi Guys > > It turns out that setting a field to "models.NullBooleanField(blank=True, > null=True,)" causes all sorts of bad things to happen as Django tries to > insert '' into boolean fields...

models.NullBooleanField()

2007-10-03 Thread Peter Nixon
Hi Guys It turns out that setting a field to "models.NullBooleanField(blank=True, null=True,)" causes all sorts of bad things to happen as Django tries to insert '' into boolean fields... I know that NullBooleanField should probably not have these switches (I did it by m