summaryrefslogtreecommitdiff
path: root/django/db/models/fields/__init__.py
AgeCommit message (Expand)Author
2015-01-16Fixed #24092 -- Widened base field support for ArrayField.Marc Tamlyn
2015-01-10Move % addition to lookups, refactor postgres lookups.Marc Tamlyn
2015-01-08Fixed #24020 -- Refactored SQL compiler to use expressionsAnssi Kääriäinen
2015-01-07Refs #2443 -- Allowed creation of objects with NULL DurationFieldsMichał Modzelewski
2015-01-07Fixed #24078 -- Removed empty strings from GenericIPAddressFieldJosh Smeaton
2015-01-06Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon
2015-01-05Fixed #23861 -- Added an API to deprecate model fields.Tim Graham
2015-01-02Fixed #9104 -- Moved FieldDoesNotExist to core.exceptionsDaniel Pyrathon
2015-01-01Fixed #23891 -- Moved deprecation of IPAddressField to system check framework.Tim Graham
2014-12-31Moved DatabaseCreation.data_types properties to DatabaseWrapper.Tim Graham
2014-12-23Removed models.Field.bind() -- unused/undocumented since at least 1.0.Tim Graham
2014-12-23Refs #2443 -- Move the durationfield converter logic.Marc Tamlyn
2014-12-23Fixed #24033 -- Use interval type on Oracle.Marc Tamlyn
2014-12-20Fixed #2443 -- Added DurationField.Marc Tamlyn
2014-12-12Fixed #23941 -- Removed implicit decimal formatting from expressions.Josh Smeaton
2014-12-09Remove text-mangling of default values.Marc Tamlyn
2014-11-26Fixed #23801 -- Added warning when max_length is used with IntegerFieldMattBlack85
2014-11-15Fixed #14030 -- Allowed annotations to accept all expressionsJosh Smeaton
2014-11-12Remove Field.get_validator_unique_lookup_type()Tim Graham
2014-11-03Fixed #23420 - broken warning for unbound naive datetime objectsAndy Chosak
2014-09-29Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.Thomas Chaumeny
2014-09-16Fixed #19463 -- Added UUIDFieldMarc Tamlyn
2014-09-03Fixed #18757, #14462, #21565 -- Reworked database-python type conversionsMarc Tamlyn
2014-08-05Removed code that assumed BooleanField could be null.Tim Graham
2014-08-04Fixed #16311 -- Added a RelatedOnlyFieldListFilter class in admin.filters.Stanislas Guerra
2014-08-03Added missing logic to TimeField.deconstruct().Baptiste Mispelon
2014-08-03Fixed #23156 -- Added missing BinaryField.deconstruct() method.Baptiste Mispelon
2014-08-01Fixed #21940 -- Added kwargs to contribute_to_class() of model fields..Mitar
2014-07-30Fixed #23112 -- Field.get_choices tries to index an iterableareski
2014-07-27Fixed #23098 -- Checked that lazy choices are not evaluated too soonFlorian Apolloner
2014-07-26Fixed #22887 -- Added comment for translators on unique_for_date error messageFederico Frenguelli
2014-07-04Fixed #20631 -- Increased the default EmailField max_length to 254.Tim Graham
2014-05-16Fixed #21905 -- Add info message if DateField or TimeField use a fixed valueMarkus Holtermann
2014-05-16Refs #21798 - Modified error number to provide room for future expansion.Russell Keith-Magee
2014-05-16Fixed #21798 -- Added check for DateTime mutually exclusive optionsDaniel Pyrathon
2014-05-06Fixed #22564 -- Prevented unneeded bytestrings in migrationsClaude Paroz
2014-04-21Fixed queries that may return unexpected results on MySQL due to typecasting.Erik Romijn
2014-04-21Appeased flake8 2.1.0.Aymeric Augustin
2014-03-26Fixed the PostGIS circular imports caused by 1506c71a95.Simon Charette
2014-03-25Fixed field deconstruction tests failures introduced by 1506c71a95.Simon Charette
2014-03-25Fixed #12030 -- Validate integer field range at the model level.Simon Charette
2014-03-14Fixed #22001 -- Ensure db_type is respected.Marc Tamlyn
2014-03-14Fixed #22272 -- Fixed regression in DecimalField when using decimal_places=0.Baptiste Mispelon
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2014-03-05Fixed #22206 -- Passed models.TextField.max_length to forms.CharField.maxlengthChris Wilson
2014-03-04Fixed typo in internal CharField methodChris Wilson
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
2014-03-03Edited model and field checks for grammar and consistency.Russell Keith-Magee
2014-02-11Fixed #2445 -- Allowed limit_choices_to attribute to be a callable.Christopher Adams
2014-02-10Fixed #17673 -- Forbid field shadowing.Christopher Medrela