Changes between Version 6 and Version 7 of Ticket #32563
- Timestamp:
- Mar 18, 2021, 3:16:19 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32563 – Description
v6 v7 70 70 I noticed that all the methods of ''RelatedManager'' directly call the router object to find the database while the ''Manager'' objects always exploits the possibility of overriding the database with the call to ''using()'' on the QuerySet or to pass parameter ''using=db'' for save model method for example. 71 71 72 I guess we need to use a mecanism which we can find in Model class with the save method:72 I think we should use the same mechanism which is used in the Model class with the save() method : 73 73 {{{ 74 74 def save(self, force_insert=False, force_update=False, using=None,