I need to know the db_column name of various model fields. On a few models the name is explicitly set by “db_column=’foo'”, but most of the models/fields have the name automatically generated by Django.
How can I retrieve the column_name for all fields from within a model’s instance?
There is an undocumented
_metaAPI that’s widely used throughout Django for introspecting models. It stores your model options on the type and provides about two dozen methods and attributes to inspect your model and it’s fields. You can use it to get all the model fields and then from the fields you can get the column name, since they specify all the business logic:This will return a tuple that will contain the attribute (field) name on the model and the DB column name. For a model field
foo = models.IntegerField(db_column='bar'), this would return('foo', 'bar').