summaryrefslogtreecommitdiff
path: root/django/db/models/fields/__init__.py
AgeCommit message (Expand)Author
2019-04-19[2.2.x] Fixed #30328 -- Fixed crash of IntegerField.validators when limit_val...Scott Fitsimones
2019-01-02Used 4 space hanging indent for dictionaries.Tim Graham
2018-11-30Fixed #30001 -- Marked UUIDField.description for translation.Prabakaran Kumaresshan
2018-11-23Refs #23801 -- Made integer field max_length warning show correct field type.Nick Pope
2018-11-23Removed redundant BigIntegerField.empty_strings_allowed (already inherited).Nick Pope
2018-11-14Fixed #29835 -- Made RelatedFieldListFilter respect ModelAdmin.ordering.Hasan Ramezani
2018-10-24Fixed #29869 -- Made UUIDField.to_python() convert integers.Sanyam Khurana
2018-08-28Refs #27795 -- Removed force_bytes()/smart_text() from model fields.Jon Dufresne
2018-08-22Fixed #29698 -- Fixed Field._check_choices() crash on invalid choices.Franck Michea
2018-08-01Simplified comment in BooleanField.to_python().Tim Graham
2018-05-29Refs #28748 -- Reallowed lazy model field choices.Tim Graham
2018-04-20Fixed #29247 -- Allowed blank model field choice to be defined in nested choi...orlnub123
2018-03-20Refs #29227 -- Simplified NullBooleanField by making it subclass BooleanField.Nick Pope
2018-03-20Fixed #29227 -- Allowed BooleanField to be null=True.Tim Graham
2018-03-03Added model name to AutoField error message.Almad
2018-02-20Fixed #28442 -- Fixed crash with nested OuterRefs that reference AutoField.Oliver Sauder
2018-02-05Refs #28814 -- Imported from collections.abc to fix Python 3.7 deprecation wa...Raymond Hettinger
2018-01-27Refs #28748 -- Reallowed lazy values in model field choices.François Freitag
2018-01-24Fixed #28748 -- Made model field choices check more strict for named groups.François Freitag
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2018-01-02Removed DeferredAttribute.__init__()'s unused model argument.Mariusz Felisiak
2017-12-28Fixed #28926 -- Fixed loss of precision of big DurationField values on SQLite...Sergey Fedoseev
2017-12-26Refs #28459 -- Improved performance of loading DecimalField on SQLite.Sergey Fedoseev
2017-12-26Fixed #28930 -- Simplified code with any() and all().Дилян Палаузов
2017-12-22Fixed #28937 -- Allowed BinaryField to be editable=True.Cameron Curry
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-12-04Fixed #28873 -- Used dict.setdefault() to set model and form field defaults.Дилян Палаузов
2017-11-11Simplified Field.get_choices().Sergey Fedoseev
2017-10-02Refs #23919 -- Removed unneeded float()/int() calls.Mariusz Felisiak
2017-09-11Refs #28492 -- Stopped accessing settings at Field.db_tablespace initialization.Simon Charette
2017-09-06Refs #23919 -- Replaced usage of django.utils.functional.curry() with functoo...Sergey Fedoseev
2017-08-10Refs #16043 -- Refactored internal fields value cache.Paulo
2017-07-27Fixed #28371 -- Fixed Cast() with CharField if the max_length argument isn't ...Mariusz Felisiak
2017-07-26Allowed database backends to specify data types for Cast().Mariusz Felisiak
2017-07-20Removed unused models.DecimalField._format().Sergey Fedoseev
2017-07-17Fixed #28391 -- Fixed Cast() with CharField and max_length on MySQL.Mariusz Felisiak
2017-06-17Fixed #28319 -- Made TextField with choices use a Select widget.Maciej Jaworski
2017-06-14Fixed #27914 -- Added support for nested classes in Field.deconstruct()/__rep...chillaranand
2017-06-05Replaced Model._get_pk_val() with pk property.Tim Graham
2017-05-11Fixed #28188 -- Fixed crash when pickling model fields.Tim Graham
2017-05-09Fixed #28164 -- Improved float conversions in DecimalField.to_pythonClaude Paroz
2017-04-27Refs #27795 -- Replaced many force_text() with str()Claude Paroz
2017-04-24Fixed #28120 -- Checked that CharField.max_length is not a boolean.Carles Pina Estany
2017-03-23Fixed #27969 -- Fixed models.Field.formfield() setting 'disabled' for fields ...Kapil Garg
2017-03-11Fixed #27904 -- Added a system check that Field.validators are callable.Adam Chainz
2017-03-04Refs #27795 -- Removed unneeded force_text callsClaude Paroz
2017-02-28Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan
2017-02-20Fixed typo in DurationField's docstring.Alexey Rogachev
2017-02-10Refs #27148 -- Fixed UUIDField.to_python(None) crash.ClairePhila
2017-02-10Allow UUIDField to be None when deserializingClairePhila