I thought I would ask the question here first before going to devs
with it. Is it possible to update a model without updating that models
parent table?

A very small example:

class Aye(model):
  a = field

class Bee(Aye):
  b = field

o = Bee.objects.get(k)
o.b = 3
o.save()


In my code this will update the Bee and the Aye tables. In my case,
where the Aye table is quite large (the entire reason I am using
inheritance) this is somewhat counter productive.
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to