Re: primary_key for ImageField does not work any more

2008-09-02 Thread David Cramer
This sounds like a bug. I would submit a ticket for it. On Sep 1, 6:42 am, Jochen Voss <[EMAIL PROTECTED]> wrote: > Hello, > > with Django 0.96 I used a model which contained the following field: > >     class ImageFile(models.Model): >         [...] >         fname = models.ImageField(upload_to=

primary_key for ImageField does not work any more

2008-09-01 Thread Jochen Voss
Hello, with Django 0.96 I used a model which contained the following field: class ImageFile(models.Model): [...] fname = models.ImageField(upload_to="images", primary_key=True, width_field="width", height_field="height") [...] When tr