summaryrefslogtreecommitdiff
path: root/django/db
Commit message (Expand)AuthorAgeFilesLines
* Refs #24227 -- Removed ManyToManyField special casing in model_to_dict().Tim Graham2016-05-111-1/+4
* Fixed #26429 -- Added a timestamp to merge migration names.Raphael Gaschignard2016-05-112-3/+9
* Fixed #25005 -- Made date and time fields with auto_now/auto_now_add use effe...Iacopo Spalletti2016-05-093-7/+70
* Replaced `six.callable` with `callable`.Ville Skyttä2016-05-081-1/+1
* Fixed #25945, #26292 -- Refactored MigrationLoader.build_graph()Jarek Glowacki2016-05-083-134/+214
* Fixed #26593 -- Leveraged deferrable_sql() in SchemaEditorMarkus Holtermann2016-05-072-5/+2
* Fixed #26555 -- Gave deconstructible objects a higher priority during seriali...Markus Holtermann2016-05-041-11/+12
* Fixed #22936 -- Obsoleted Field.get_prep_lookup()/get_db_prep_lookup()Claude Paroz2016-05-046-79/+40
* Normalized "an SQL" spelling.Ville Skyttä2016-05-033-5/+5
* Refs #26565 -- Errored nicely when using Prefetch with a values() queryset.Simon Charette2016-05-031-0/+2
* Refs #16508 -- Made Model.__init__() aware of virtual fields.Michal Petrucha2016-05-031-2/+5
* Refs #22936 -- Moved more of Field.get_db_prep_lookup() to lookups.Tim Graham2016-05-022-17/+38
* Fixed #26058 -- Delegated os.path bits of FileField's filename generation to ...Cristiano2016-04-301-7/+24
* Fixed #26207 -- Replaced dynamic classes with non-data descriptors for deferr...Anssi Kääriäinen2016-04-295-136/+55
* Fixed #26557 -- Converted empty strings to None when saving GenericIPAddressF...Joshua Phillips2016-04-291-1/+1
* Refs #26521 -- Adjusted CreateModel bases validation to account for mixins.Simon Charette2016-04-281-6/+5
* Refs #26521 -- Added the duplicated value to CreateModel validation messages.Simon Charette2016-04-271-4/+4
* Fixed #26521 -- Validated CreateModel bases, fields and managers for duplicates.James Robert2016-04-271-0/+20
* Refs #22936 -- Removed unused code in Field.get_db_prep_lookup().Tim Graham2016-04-251-20/+2
* Removed unused Q.clone().Tim Graham2016-04-251-10/+0
* Removed unused/untested Field.get_choices_default()/value_to_string() methods.Tim Graham2016-04-252-33/+1
* Removed unused BaseExpression.refs_aggregate().Tim Graham2016-04-222-56/+1
* Fixed #26320 -- Deprecated implicit OneToOnField parent_link.Tim Graham2016-04-221-0/+5
* Removed unused ForeignObject.attnames/get_defaults().Tim Graham2016-04-221-7/+0
* Removed unused ForeignObjectRel.get_choices() limit_to_currently_related argu...Tim Graham2016-04-221-10/+4
* Refs #3254 -- Added full text search to contrib.postgres.Marc Tamlyn2016-04-222-1/+9
* Fixed #26528 -- Allowed any iterable (e.g. tuple) as validators kwarg for for...Loïc Bistuer2016-04-221-3/+6
* Fixed #26475 -- Added functools.partial() support to migrations autodetector.Matthew Schinckel2016-04-191-0/+3
* Fixed #26498 -- Fixed TimeField microseconds round-tripping on MySQL and SQLite.Lukasz Wiecek2016-04-181-1/+1
* Fixed #26486 -- Fixed a select_related() + defer() MTI edge case.Tim Graham2016-04-131-1/+0
* Refs #16508 -- Renamed the current "virtual" fields to "private".Michal Petrucha2016-04-135-20/+54
* Refs #22936 -- Moved IntegerField.get_prep_lookup() logic to lookups.Tim Graham2016-04-122-6/+22
* Fixed #26351 -- Added MySQL check to warn about strict mode optionClaude Paroz2016-04-081-0/+23
* Refs #26351 -- Added check hook to support database-related checksClaude Paroz2016-04-081-1/+4
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-0820-152/+178
* Fixed #26458 -- Based Avg's default output_field resolution on its source fie...Simon Charette2016-04-051-4/+6
* Fixed #25850 -- Made migrate/makemigrations error on inconsistent history.Attila Tovt2016-04-052-1/+30
* Fixed E402 flake8 warnings.Tim Graham2016-04-042-15/+15
* Fixed W503 flake8 warnings.Tim Graham2016-04-0417-68/+66
* Fixed #26075 -- Added clearer wording for one-off values in makemigrationsSusan Tan2016-04-031-2/+4
* Fixed #26441 -- Added model Field.db_check() methodMarkus Holtermann2016-04-032-7/+21
* Fixed #26443 -- Corrected timezone.now in MigrationQuestioner promptIacopo Spalletti2016-04-031-1/+1
* Fixed #11560 -- Allowed proxy model multiple-inheritance from the same concre...Akshesh2016-03-301-3/+3
* Fixed #26384 -- Fixed renaming the PK on a model with a self-referential FK o...Alex Hill2016-03-291-1/+9
* Fixed #24932 -- Added Cast database function.Claude Paroz2016-03-291-0/+33
* Fixed #25759 -- Added keyword arguments to customize Expressions' as_sql().Kai Feldhoff2016-03-292-17/+27
* Fixed #26413 -- Fixed a regression with abstract model inheritance and explic...Simon Charette2016-03-281-1/+9
* Sorted single letter imports per the latest version of isort.Tim Graham2016-03-283-5/+5
* Avoided need to import model fields in models/functions.py.Claude Paroz2016-03-281-5/+3
* Normalized Func.as_sqlite() signature.Tim Graham2016-03-281-2/+2