summaryrefslogtreecommitdiff
path: root/django/db/models/fields
AgeCommit message (Expand)Author
2016-11-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2016-10-31Fixed #27148 -- Fixed ModelMultipleChoiceField crash with invalid UUID.Tim Graham
2016-10-28Fixed #27188 -- Allowed using unique=True with FileField.Michael Scott
2016-10-28Fixed #20939 -- Simplified query generation by converting QuerySet to Query.Tim Graham
2016-10-26Fixed #27334 -- Allowed FileField to move rather than copy a file.Adam Chidlow
2016-09-22Fixed #27159 -- Prevented pickling a query with an __in=inner_qs lookup from ...Jani Tiainen
2016-09-16Fixed #27235 -- Removed some usage of mutable default arguments.Chris Lamb
2016-09-09Fixed #27204 -- Made clashing m2m intermediary table checks ignore unmanaged ...Tim Graham
2016-09-03Replaced smart_* by force_* calls whenever possibleClaude Paroz
2016-08-25Replaced property() usage with decorator in several places.Berker Peksag
2016-08-11Fixed #26891 -- Fixed lookup registration for ForeignObject.Ryan P Kilby
2016-08-09Fixed #13809 -- Made FieldFile.open() respect its mode argument.Chris Sinchok
2016-08-05Fixed #26706 -- Made RelatedManager modification methods clear prefetch_relat...Yoong Kang Lim
2016-08-04Fixed #26983 -- Fixed isnull filtering on ForeignKey with to_fieldClaude Paroz
2016-07-30Refs #25550 -- Corrected deprecation message for assigning M2M relations.Tim Graham
2016-07-21Refs #26796 -- Fixed ManyToManyField's limit_choices_to warning without a thr...Kevan Swanberg
2016-07-16Fixed #26900 -- Fixed crash accessing deferred FileFields.Tim Graham
2016-07-12Fixed #17657 -- Made ModelForm respect ModelMultipleChoiceField's to_field_name.Andrey Fedoseev
2016-07-11Fixed #26749 -- Preserved behavior of use_for_related_field during deprecation.Julien Hartmann
2016-07-08Fixed #26796 -- Added a system check for m2m fields with ignored limit_choice...Anderson Resende
2016-06-30Fixed #21548 -- Added FileExtensionValidator and validate_image_file_extension.Berker Peksag
2016-06-28Fixed #26786 -- Avoided redundant max value validators on integer fields.Eduard Stepanov
2016-06-27Fixed #26784 -- Made ForeignKey.validate() pass `model` to router if model_in...Ben Demboski
2016-06-17Reverted "Fixed #26398 -- Made FieldFile.open() respect its mode argument."Tim Graham
2016-06-13Fixed #4136 -- Made ModelForm save empty values for nullable CharFields as NULL.Jon Dufresne
2016-06-10Fixed #12810 -- Added a check for clashing ManyToManyField.db_table names.Berker Peksag
2016-06-09Fixed #26648 -- Added a system check for invalid related_query_name's contain...Michal Petrucha
2016-06-09Replaced a hardcoded LOOKUP_SEP in models/fields/__init__.pyMichal Petrucha
2016-06-09Fixed #26718 -- Added system check for existence of the fields specified by F...Sergey Fedoseev
2016-06-07Fixed typos in db/models/fields/related_descriptors.pyTim Graham
2016-06-07Fixed typo in db/models/fields/related_descriptors.pyPaulo
2016-06-07Refs #15250 -- Added docstring for ForwardOneToOneDescriptor.Paulo
2016-06-04Fixed #26667 -- Fixed a regression in queries on a OneToOneField that has to_...Tim Graham
2016-06-03Fixed #15250 -- Avoided extra query on some multi-table inheritance queries.Paulo
2016-05-28Refs #24227 -- Fixed crash of ManyToManyField.value_from_object() on unsaved ...Tim Graham
2016-05-17Fixed #10506, #13793, #14891, #25201 -- Introduced new APIs to specify models...Loïc Bistuer
2016-05-11Refs #24227 -- Removed ManyToManyField special casing in model_to_dict().Tim Graham
2016-05-04Fixed #22936 -- Obsoleted Field.get_prep_lookup()/get_db_prep_lookup()Claude Paroz
2016-05-03Normalized "an SQL" spelling.Ville Skyttä
2016-05-02Refs #22936 -- Moved more of Field.get_db_prep_lookup() to lookups.Tim Graham
2016-04-30Fixed #26058 -- Delegated os.path bits of FileField's filename generation to ...Cristiano
2016-04-29Fixed #26207 -- Replaced dynamic classes with non-data descriptors for deferr...Anssi Kääriäinen
2016-04-25Refs #22936 -- Removed unused code in Field.get_db_prep_lookup().Tim Graham
2016-04-25Removed unused/untested Field.get_choices_default()/value_to_string() methods.Tim Graham
2016-04-22Removed unused ForeignObject.attnames/get_defaults().Tim Graham
2016-04-22Removed unused ForeignObjectRel.get_choices() limit_to_currently_related argu...Tim Graham
2016-04-22Fixed #26528 -- Allowed any iterable (e.g. tuple) as validators kwarg for for...Loïc Bistuer
2016-04-13Refs #16508 -- Renamed the current "virtual" fields to "private".Michal Petrucha
2016-04-12Refs #22936 -- Moved IntegerField.get_prep_lookup() logic to lookups.Tim Graham
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham