summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2015-01-16Fixed #24092 -- Widened base field support for ArrayField.Marc Tamlyn
2015-01-16Fixed #24146 -- Fixed a missing fields regression in admin checks.Collin Anderson
2015-01-15Replaced inner functions by class methods.Simon Charette
2015-01-14Fixed incorrect error message in Options.get_fields()Collin Anderson
2015-01-12Fixed #24031 -- Added CASE expressions to the ORM.Michał Modzelewski
2015-01-13Fixed #24060 -- Added OrderBy ExpressionsJosh Smeaton
2015-01-12Fixed #9893 -- Allowed using a field's max_length in the Storage.Pavel Shpilev
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-08Simplified verbose_name_raw propertyClaude Paroz
2015-01-07Fixed null handling in Value expressionJosh Smeaton
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-05Renamed flag for detecting managers built from QuerySets with as_manager().Markus Holtermann
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-31Fixed #23758 -- Allowed more than 5 levels of subqueriesPiotr Pawlaczek
2014-12-31Moved DatabaseCreation.data_types properties to DatabaseWrapper.Tim Graham
2014-12-29Fixed #23753 -- Oracle failure with CoalesceJosh Smeaton
2014-12-27Fixed #23753 -- Added a suite of SQL FunctionsJosh Smeaton
2014-12-24Fixed #10414 -- Made select_related() fail on invalid field names.Niclas Olofsson
2014-12-23Removed models.Field.bind() -- unused/undocumented since at least 1.0.Tim Graham
2014-12-23Fixed #21414 -- Removed RelatedObject and deprecated Field.related.Anssi Kääriäinen
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-18Refs #24020 -- return expressions from get_group_by_cols()Anssi Kääriäinen
2014-12-17Fixed #24007 -- Ensure apps registry's ready before unpickling modelsClaude Paroz
2014-12-15Fixed #23822 -- Added support for serializing model managers in migrationMarkus Holtermann
2014-12-15Changed internal storing of abstract and concrete managers to be in a single ...Markus Holtermann
2014-12-13Fixed #23812 -- Changed django.utils.six.moves.xrange imports to rangeMichael Hall
2014-12-12Fixed #23455 -- Accept either bytes or text for related_name, convert to text.Carl Meyer
2014-12-12Revert "Fixed #23455 -- Forced related_name to be a unicode string during dec...Carl Meyer
2014-12-12Fixed #23941 -- Removed implicit decimal formatting from expressions.Josh Smeaton
2014-12-09Remove text-mangling of default values.Marc Tamlyn
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne
2014-11-28Fixed #23853 -- Added Join class to replace JoinInfoAnssi Kääriäinen
2014-11-28Fixed #901 -- Added Model.refresh_from_db() methodAnssi Kääriäinen
2014-11-28Fixed #16731 -- Made pattern lookups work properly with F() expressionsThomas Chaumeny
2014-11-27Fixed #23338 -- Added warning when unique=True on ForeigKeyDiego Guimarães
2014-11-27Fixed #23877 -- aggregation's subquery missed target colAnssi Kääriäinen
2014-11-27Fixed #23875 -- cleaned up query.get_count()Anssi Kääriäinen
2014-11-26Fixed #23801 -- Added warning when max_length is used with IntegerFieldMattBlack85
2014-11-26Fixed #23867 -- removed DateQuerySet hacksAnssi Kääriäinen
2014-11-26Adjusted a comment to reflect some app refactor changes.Simon Charette
2014-11-21Fixed #23889 -- Added more usage of quote_name_unless_alias() to avoid deprec...Collin Anderson
2014-11-21Fixed #23862 -- Made ManyToManyRel.get_related_field() respect to_field.Simon Charette
2014-11-20Fixed #23605 -- Fixed nested subquery regressionAnssi Kääriäinen