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
place = Place.objects.get(id=1) # Create a restaurant using existing Place place.__class__ = Restaurant place.save() restaurant = place