I\'m using multi-table-inheritance, and want to know how to create an inherited type from an instance of the superclass.
Using the example given in the documentation
Multi-table inheritance is just OneToOneField relation between Place and Restaurant.
OneToOneField
place = Place.objects.get(id=1) # Create a restaurant using existing Place restaurant = Resturant(place_ptr=place) restaurant.save()