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?

link|improve this question
Some docs on Django i found while searching for the answer: django-model-internals-reference.readthedocs.org/en/latest/… – Jonttu Apr 10 '11 at 17:10
feedback

1 Answer

up vote 1 down vote accepted

Use _meta.get_fields_with_model() method:

for field, model in Derived._meta.get_fields_with_model():
    if field.name == 'myfield':
        model = model or Derived
        print 'myfield belongs to %s' % model._meta.db_table
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.