Hi! Is there a way to declare this case so that it works? I hope the code is self-explanatory.
class A(Model):
    many_to_one = models.ForeignKey(B)
    (...)
class B(A):
    (...)    
Hi! Is there a way to declare this case so that it works? I hope the code is self-explanatory.
class A(Model):
    many_to_one = models.ForeignKey(B)
    (...)
class B(A):
    (...)    
class A(Model):
    many_to_one = models.ForeignKey('B')
    (...)
class B(A):
    (...)