I get the backwards compatibility issue, so if it cant be changed that
is understandable.
Also I simplified the issue about aggregate, I should have shown the
actual use case, to only show galleries of with videos that has been
converted.
Gallery.objects.annotate(video_count=Count('videos__flv_v
On Fri, Feb 20, 2009 at 5:18 PM, Øyvind Saltvik wrote:
>
> Topic of the thread says ticket #10244.
>
Ah, so it is, I missed that. Sorry. I'm often blind to thread titles.
>
> On filefield being saved in the db as '' when saved from the form,
> that makes perfect sense now.
>
> But explicitly
Topic of the thread says ticket #10244.
On filefield being saved in the db as '' when saved from the form,
that makes perfect sense now.
But explicitly setting the field to None in python should store NULL
in the db.
On 20 Feb, 22:05, Karen Tracey wrote:
> On Fri, Feb 20, 2009 at 3:21 PM, Øyvi
On Fri, Feb 20, 2009 at 4:05 PM, Karen Tracey wrote:
> On Fri, Feb 20, 2009 at 3:21 PM, Øyvind Saltvik
> wrote:
>
>>
>> Attached new patch to ticket that should make the behaviour as
>> expected.
>>
>
> To what ticket? There's no reference to a ticket in this (argh,
> top-posted) thread.
>
>
>>
On Fri, Feb 20, 2009 at 3:21 PM, Øyvind Saltvik wrote:
>
> Attached new patch to ticket that should make the behaviour as
> expected.
>
To what ticket? There's no reference to a ticket in this (argh, top-posted)
thread.
> On 20 Feb, 20:15, Øyvind Saltvik wrote:
> > The problem is, it is impos
Attached new patch to ticket that should make the behaviour as
expected.
On 20 Feb, 20:15, Øyvind Saltvik wrote:
> The problem is, it is impossible to make a FileField None.
>
> >>> from django.db import connection
> >>> from app.models import Model
> >>> instance = Model.objects.all()[0]
> >>>
The problem is, it is impossible to make a FileField None.
>>> from django.db import connection
>>> from app.models import Model
>>> instance = Model.objects.all()[0]
>>> instance.filefield = None
>>> instance.save()
>>> print connection.queries[-1]
On 20 Feb, 19:06, Collin Grady wrote:
> It wi
It will only store NULL if you set it to None - if you leave the field
blank in a form or admin, there's still an empty string posted for
most string field types, so it stores that empty string.
On Fri, Feb 20, 2009 at 4:57 AM, oyvind.salt...@gmail.com
wrote:
>
> If a FileField with null=True is
If a FileField with null=True is set to None, the db stores '' in the
db and not NULL as I would expect.
Also, if a FileField has both blank=True and null=True a ModelForm
without a file will save '' in the db, not sure if this is the desired
behaviour.
So the question is should the behaviour be