Skip to content

Instantly share code, notes, and snippets.

@xordoquy
Created November 28, 2014 16:22
Show Gist options
  • Save xordoquy/4dfd1291ebd3a5527fc1 to your computer and use it in GitHub Desktop.
Save xordoquy/4dfd1291ebd3a5527fc1 to your computer and use it in GitHub Desktop.
# BAD: Incorrect code
class MyManager(models.Manager):
# ...
pass
# Sets the attribute on an instance of MyManager. Django will
# ignore this setting.
mgr = MyManager()
mgr.use_for_related_fields = True
class MyModel(models.Model):
# ...
objects = mgr
# End of incorrect code.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment