Russell Keith-Magee said the following: > On 8/31/07, David Cramer <[EMAIL PROTECTED]> wrote: >> Not only would this fix my multiple pk issue (temporarily :P) but it >> seems like the right approach. > > I'm not a big fan on making temporary fixes. To my mind, its better to > say 'this feature is coming' than have a halfway implementation that > breaks in various places (most notably, the admin app).
The change he proposes would also break normal saving :) f = Foo(id=3, name="some new name") f.save() Would start throwing an exception since the row already existed but it would be trying to insert. -- Collin Grady Change your thoughts and you change your world. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~----------~----~----~----~------~----~------~--~---
