We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace bulk_create with iteration in atomic transaction in a multi-table inheritance scenario.
if is_multitabel_inheritance(self.model): with transaction.atomic(): for obj in objs: obj.save() return objs def is_multitabel_inheritance(cls): for parent in cls._meta.get_parent_list(): if parent._meta.concrete_model is not cls._meta.concrete_model: return True return False
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Replace bulk_create with iteration in atomic transaction in a multi-table inheritance scenario.
The text was updated successfully, but these errors were encountered: