Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/db/models/deletion.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #18012 -- Made proxy and concrete model reverse fiel...Simon Charette2015-10-121-1/+1
* Fixed #23076, #25505 -- Fixed deletion of intermediate pr...Simon Charette2015-10-121-1/+1
* Refs #18012 -- Removed special casing for proxy models de...Simon Charette2015-10-121-10/+1
* Fixed #25058 -- Added GenericRelations with related_query...sarthakmeh2015-09-031-5/+2
* Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant2015-08-311-1/+0
* Fixed #16891 -- Made Model/QuerySet.delete() return the n...Alexander Sosnovskiy2015-05-221-3/+8
* Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen2015-03-251-9/+8
* Fixed typo in refs #15579 comment.Tim Graham2015-03-171-2/+1
* Fixed #15579 -- Added ability to delete only child models...Andriy Sokolovskiy2015-03-171-15/+19
* Fixed #24289 -- Reversed usage of Field.many_to_one and o...Loic Bistuer2015-02-131-1/+1
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+1
* Fixed #12663 -- Formalized the Model._meta API for retrie...Daniel Pyrathon2015-01-071-6/+22
* Replaced set([foo, ...]) by {foo, ...} literals. Refs PR ...Thomas Chaumeny2014-09-281-3/+3
* Fixed #16426 -- deletion of 1000+ objects with relations ...Anssi Kääriäinen2014-08-111-5/+19
* Fixed #22998 -- Updated the fast_delete logic for GFKsGavin Wahl2014-07-161-3/+3
* Removed legacy transaction management per the deprecation...Aymeric Augustin2014-03-211-1/+1
* Fixed many typos in comments and docstrings.Rodolfo Carvalho2014-03-031-2/+2
* Fixed E125 pep8 warningsChristopher Medrela2013-11-281-2/+2
* Made MigrationWriter look for a "deconstruct" attribute o...Loic Bistuer2013-09-101-0/+1
* Fixed #20978 -- Made deletion.SET_NULL more friendly for ...Loic Bistuer2013-09-101-1/+2
* Fixed #20989 -- Removed useless explicit list comprehensi...Simon Charette2013-08-301-2/+2
* Deprecated SortedDict (replaced with collections.OrderedD...Curtis Maloney2013-08-041-2/+2
* Fixed #19385 again, now with real code changesAnssi Kääriäinen2013-03-241-10/+5
* Used commit_on_success_unless_managed to make ORM operati...Aymeric Augustin2013-03-111-50/+32
* Deprecated transaction.is_managed().Aymeric Augustin2013-03-111-1/+1
* Deprecated transaction.commit/rollback_unless_managed.Aymeric Augustin2013-03-111-2/+0
* Made transaction.managed a no-op and deprecated it.Aymeric Augustin2013-03-111-1/+1
* Move logic seperation as its not longer repetitiveDavid Cramer2013-01-141-9/+6
* Send post_delete signals immediatelyDavid Cramer2013-01-141-10/+12
* Removed some now dead code from deletion (thanks to Carl ...Alex Gaynor2013-01-121-14/+0
* Fixed #18676 -- Allow fast-path deletion of objectsAnssi Kääriäinen2012-09-281-6/+57
* remove a bunch of unnescesarry iterkeys() callsAlex Gaynor2012-08-081-1/+1
* [py3] Fixed access to dict keys/values/items.Aymeric Augustin2012-08-071-12/+13
* Fixed #18083 -- Fixed cascade deletion with proxy model o...Carl Meyer2012-04-101-3/+4
* Fixed #17918 - Handle proxy models correctly when sorting...Carl Meyer2012-03-171-3/+12
* Fixed #16128 - Correctly cascade-delete proxy models as i...Carl Meyer2012-03-051-1/+3
* Fixed #16584 -- Fixed a bunch of typos in code comments. ...Jannis Leidel2011-08-121-1/+1
* Fixed #16225 -- Removed unused imports. Many thanks to Ay...Jannis Leidel2011-07-131-1/+0
* Fixed #15776 - delete regression in Django 1.3 involving ...Luke Plant2011-05-301-3/+3
* Removed a bunch more Python 2.4 workarounds now that we d...Adrian Holovaty2011-03-281-3/+2
* Fixed Python 2.4 incompatibility introduced in r15249.Carl Meyer2011-01-261-1/+2
* Fixed #14672 - Added admin handling for on_delete=PROTECT...Carl Meyer2011-01-201-2/+17
* Fixed #15118 - Corrected the deletion-ordering for inheri...Carl Meyer2011-01-191-5/+13
* Avoid doing quadratic amounts of work during object delet...Alex Gaynor2011-01-191-5/+6
* Fixed #7539, #13067 -- Added on_delete argument to Foreig...Carl Meyer2010-11-091-0/+245