Consider the following example:
class Base(models.Model):
myfield = models.CharField()
class Derived(Base):
pass
Now, the base and derived classes will have different tables in the databases.
My question is how to find out which table myfield belongs to?