Don't use class methods on Django models
Don't use class methods on Django models
You're viewing a single thread.
View all comments
2
comments
The reasoning does not seem that convincing. I also don't create new instances from the Manager but instead use the normal constructor like this:
instance = models.MyModel(...) # instead of something like models.objects.create(...)
So I would want alternative constructors in the same place...
1 0 Reply