summaryrefslogtreecommitdiff
path: root/django/db/models/deletion.py
AgeCommit message (Expand)Author
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
2011-08-12Fixed #16584 -- Fixed a bunch of typos in code comments. Thanks, Bernhard Essl.Jannis Leidel
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-05-30Fixed #15776 - delete regression in Django 1.3 involving nullable foreign keysLuke Plant
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-01-26Fixed Python 2.4 incompatibility introduced in r15249.Carl Meyer
2011-01-20Fixed #14672 - Added admin handling for on_delete=PROTECT. Thanks to jtiai fo...Carl Meyer
2011-01-19Fixed #15118 - Corrected the deletion-ordering for inherited models.Carl Meyer
2011-01-19Avoid doing quadratic amounts of work during object deletion.Alex Gaynor
2010-11-09Fixed #7539, #13067 -- Added on_delete argument to ForeignKey to control casc...Carl Meyer