Hi, i didn't found noting about it in docs, so i'll try to ask, first
explanation, i have:

class A(models.Model):
    name = models.CharFiled(...., required=True)
    .....

class B(A):
    ....


I have an existing instance of A, say `a`

and i "want to make" instance of b out of it.

i'm looking for something like:
    b = B()
    b.origin = a
    b.save()


Is this somehow possible?

Thanks a lot!

--~--~---------~--~----~------------~-------~--~----~
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