Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django admin many to many table name

Can I specify the name I want for the many to many table?

like image 919
kelvinfix Avatar asked May 02 '11 03:05

kelvinfix


1 Answers

Yes. See Table Names for all of the exciting details.

Update: OK, then perhaps the related_name option is what you are looking for. There are some caveats covered here.

Updatex2: OK, Kelvin gets a star for answering his own question! It's been an age since I perused the Django Meta Model Options, but, in retrospect, that's where we should have started.

BTW, wandering through the django/db/ code on only half a cup of coffee is definitely a challenge.

like image 180
Peter Rowell Avatar answered Sep 28 '22 17:09

Peter Rowell