On Sun, 2008-10-12 at 00:16 -0700, shabda wrote: > My models.py > > class Foo(models.Model): > name = models.CharField(max_length = 100) > > def save(self): > self.id = None > super(Foo, self).save() > > class Bar(Foo): > created = models.DateTimeField(auto_now_add = 1) > > > This gives me, > > In [1]: from djcalendar.models import Foo > > In [2]: shabda = Foo(name = 'Shabda') > > In [3]: shabda.save() > > In [4]: Foo.objects.all() > Out[4]: [<Foo: Foo object>] > > In [5]: shabda.name = 'Shabda Raaj' > > In [6]: shabda.save() > > In [7]: Foo.objects.all() > Out[7]: [<Foo: Foo object>, <Foo: Foo object>] > > > Which is what I expect. Now doing the same thing to Bar > > In [1]: from djcalendar.models import Bar > > In [2]: shabda = Bar(name = 'Shabda') > > In [3]: shabda.save() > > In [4]: shabda.name = 'Shabda Raaj' > > In [5]: shabda.save() > > In [6]: Bar.objects.all() > Out[6]: [<Bar: Bar object>] > > Here I am expecting two objects, similar to what happened with Foo, > but I get only one. > > Am I missing something, or is this a bug?
You're missing something. You are assuming that setting Foo.id to be None will create a new Bar object. Since "id" is not the primary key of the Bar model, this won't be the case. Your code is creating another copy of Foo and then changes the parent to which the shabda object points. The primary key of shabda doesn't change throughout this process. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---