summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2016-12-24Fixed #25492 -- Checked deferred foreign key constraints before dropping them.Simon Charette
2016-12-24Fixed #27498 -- Fixed filtering on annotated DecimalField on SQLite.Peter Inglesby
2016-12-23Used @cached_property in RawQuerySet.Adam Chainz
2016-12-23Refs #27624 -- Made QuerySet._prefetch_related_lookups immutable.Adam Chainz
2016-12-23Refs #18823 -- Corrected field name in an m2m manager error message.Andrey Kuzminov
2016-12-20Removed unneeded values in NullBooleanField.formfield().Tim Graham
2016-12-19Refs #19884 -- Removed DatabaseFeatures.can_introspect_max_length.Mariusz Felisiak
2016-12-19Refs #19884 -- Added CharField max_length introspection on Oracle.Mariusz Felisiak
2016-12-15Optimized Model instantiation a bit.Adam Chainz
2016-12-14Fixed #27599 -- Fixed Field.__str__() crash for fields not attached to models.Morgan Aubert
2016-12-14Fixed #27594 -- Fixed select_related() with reverse self-referential OneToOne...Daniel Hillier
2016-12-10Fixed #27310 -- Stopped rendering apps in RenameModel.state_forwards.Simon Charette
2016-12-08Fixed #13312 -- Allowed specifying the order of null fields in queries.Yohann Gabory
2016-12-07Fixed #17002 -- Allowed using a ManyToManyField through model that inherits a...InvalidInterrupt
2016-12-07Fixed #25708 -- Fixed annotations with geometry values.Sergey Fedoseev
2016-12-05Refs #27025 -- Fixed Python 3.6 deprecation warning for empty model super() c...Tim Graham
2016-12-05Refs #27324 -- Optimized DatabaseIntrospection.get_constraints() for foreign ...Mariusz Felisiak
2016-12-02Fixed #27561 -- Added Oracle support for binary "or" operator.Mariusz Felisiak
2016-12-01Fixed #27546 -- Removed hardcoded class names in __repr__() methods.Keda87
2016-11-30Refs #24245 -- Added introspection for database defaults on Oracle.Mariusz Felisiak
2016-11-30Refs #27358 -- Fixed system check crash with an empty FileField.upload_to.Lex Berezhny
2016-11-29Fixed #27358 -- Added a system check to prevent FileField's upload_to from st...Henry Dang
2016-11-29Fixed #27544 -- Fixed QuerySet.update(dt=F('dt') + timedelta) crash on SQLite.Andrew Nester
2016-11-28Fixed #27321 -- Added detection for table case name sensitivity on MySQL.Adam Chainz
2016-11-28Refs #26327 -- Renamed JsonAgg to JSONBAgg.Mads Jensen
2016-11-25Fixed #27532 -- Deprecated Model._meta.has_auto_fieldAdam Chainz
2016-11-25Fixed grammar in sqlite's DatabaseOperations.bulk_batch_size()'s docstring.Daniel Hahler
2016-11-24Improved the way Model.save() skips the auto_field.Adam Chainz
2016-11-23Fixed #27499 -- Made Prefetches pickle without evaluating their QuerySet.Adam Chainz
2016-11-23Cleaned up some __getstate__() docstrings.Tim Graham
2016-11-23Fixed #24959 -- Fixed queries using negative timedeltas on MySQL and Oracle.Mariusz Felisiak
2016-11-23Fixed #27504 -- Allowed using the ORM after an error and rollback when autoco...Mark Young
2016-11-22Fixed #27295 -- Added a system check to prohibit model names that start or en...Quentin Fulsher
2016-11-20Fixed #27512 -- Removed unused code in Model.__init__().Adam Chainz
2016-11-20Refs #26207 -- Removed obsolete comments about deferred model classes.Adam Chainz
2016-11-20Fixed #27514 -- Tested Model.__init__ excessive number of fields.Adam Chainz
2016-11-15Fixed #27407 -- Made Model.delete(keep_parents=True) preserve parent reverse ...Simon Charette
2016-11-14Fixed #27463 -- Fixed E741 flake8 warnings.Ramin Farajpour Cami
2016-11-14Fixed #27481 -- Made SQLite return annotated boolean values as boolean, not i...Sergey Fedoseev
2016-11-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2016-11-11Fixed #25240 -- Added ExtractWeek and exposed it through the __week lookup.Mads Jensen
2016-11-10Removed redundant DateTimeField.register_lookup()s.Tim Graham
2016-11-08Refs #27420 -- Removed exception hiding in Oracle test user creation during -...Mariusz Felisiak
2016-11-08Fixed #27420 -- Quoted the Oracle test user password in queries.Mariusz Felisiak
2016-11-06Fixed #27378 -- Added support for serialization of uuid.UUID in migrations.Maxime Lorant
2016-11-06Fixed #27372 -- Fixed introspection of SQLite foreign keys with spaces in DDL.Saulius Žemaitaitis
2016-11-05Fixed #27441 -- Improved SQL for 'DROP COLUMN' on MySQLAdam Chainz
2016-11-01Fixed CVE-2016-9013 -- Generated a random database user password when running...Marti Raudsepp
2016-10-31Fixed #27148 -- Fixed ModelMultipleChoiceField crash with invalid UUID.Tim Graham
2016-10-28Fixed #27188 -- Allowed using unique=True with FileField.Michael Scott