summaryrefslogtreecommitdiff
path: root/django/db/models/deletion.py
AgeCommit message (Expand)Author
2018-10-17Fixed #21171 -- Avoided starting a transaction when a single (or atomic queri...Florian Apolloner
2018-01-13Fixed #29016 -- Fixed incorrect foreign key nullification on related instance...Étienne Loks
2017-12-26Fixed #28930 -- Simplified code with any() and all().Дилян Палаузов
2017-12-06Fixed #28893 -- Removed unnecessary dict.items() calls.Tim Graham
2017-02-28Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2016-11-15Fixed #27407 -- Made Model.delete(keep_parents=True) preserve parent reverse ...Simon Charette
2016-09-08Refs #15250 -- Removed an obsolete comment regarding MTI cascade deletion.Simon Charette
2016-04-13Refs #16508 -- Renamed the current "virtual" fields to "private".Michal Petrucha
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-04-04Fixed W503 flake8 warnings.Tim Graham
2015-11-09Fixed #24576 -- Made deletion of related objects deterministic.Laura Feier
2015-10-12Refs #18012 -- Made proxy and concrete model reverse fields consistent.Simon Charette
2015-10-12Fixed #23076, #25505 -- Fixed deletion of intermediate proxy models.Simon Charette
2015-10-12Refs #18012 -- Removed special casing for proxy models deletion.Simon Charette
2015-09-03Fixed #25058 -- Added GenericRelations with related_query_name to the admin's...sarthakmeh
2015-08-31Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant
2015-05-22Fixed #16891 -- Made Model/QuerySet.delete() return the number of deleted obj...Alexander Sosnovskiy
2015-03-25Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen
2015-03-17Fixed typo in refs #15579 comment.Tim Graham
2015-03-17Fixed #15579 -- Added ability to delete only child models in multi-table inhe...Andriy Sokolovskiy
2015-02-14Fixed #24289 -- Reversed usage of Field.many_to_one and one_to_many.Loic Bistuer
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-06Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon
2014-09-29Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.Thomas Chaumeny
2014-08-11Fixed #16426 -- deletion of 1000+ objects with relations on SQLiteAnssi Kääriäinen
2014-07-16Fixed #22998 -- Updated the fast_delete logic for GFKsGavin Wahl
2014-03-21Removed legacy transaction management per the deprecation timeline.Aymeric Augustin
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
2013-11-28Fixed E125 pep8 warningsChristopher Medrela
2013-09-10Made MigrationWriter look for a "deconstruct" attribute on functions.Loic Bistuer
2013-09-10Fixed #20978 -- Made deletion.SET_NULL more friendly for MigrationWriter.seri...Loic Bistuer
2013-08-30Fixed #20989 -- Removed useless explicit list comprehensions.Simon Charette
2013-08-04Deprecated SortedDict (replaced with collections.OrderedDict)Curtis Maloney
2013-03-24Fixed #19385 again, now with real code changesAnssi Kääriäinen
2013-03-11Used commit_on_success_unless_managed to make ORM operations atomic.Aymeric Augustin
2013-03-11Deprecated transaction.is_managed().Aymeric Augustin
2013-03-11Deprecated transaction.commit/rollback_unless_managed.Aymeric Augustin
2013-03-11Made transaction.managed a no-op and deprecated it.Aymeric Augustin
2013-01-14Move logic seperation as its not longer repetitiveDavid Cramer
2013-01-14Send post_delete signals immediatelyDavid Cramer
2013-01-11Removed some now dead code from deletion (thanks to Carl Meyer for noticing it).Alex Gaynor
2012-09-28Fixed #18676 -- Allow fast-path deletion of objectsAnssi Kääriäinen
2012-08-08remove a bunch of unnescesarry iterkeys() callsAlex Gaynor
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-04-09Fixed #18083 -- Fixed cascade deletion with proxy model of concrete subclass....Carl Meyer
2012-03-17Fixed #17918 - Handle proxy models correctly when sorting deletions for datab...Carl Meyer
2012-03-05Fixed #16128 - Correctly cascade-delete proxy models as if they were the conc...Carl Meyer