Hello,
Would it be possible to extend an already saved polymorphic model?
class A(PolymorphicModel)
pass
class B(A):
pass
would it be possible to turn an instance of A to an instance of B ?
like some sort of B(A=A()).
(I guess it would be technically possible since inheritance only store a pointer to the base class?)