Ticket #11137: proxy-model.patch
File proxy-model.patch, 470 bytes (added by , 15 years ago) |
---|
-
docs/topics/db/models.txt
1101 1101 containing the new managers and inherit that after the primary base class:: 1102 1102 1103 1103 # Create an abstract class for the new manager. 1104 class ExtraManagers :1104 class ExtraManagers(models.Model): 1105 1105 secondary = NewManager() 1106 1106 1107 1107 class Meta: