summaryrefslogtreecommitdiff
path: root/django/db/backends/base
AgeCommit message (Expand)Author
2018-09-25[2.1.x] Fixed #29778 -- Fixed quoting of unique index names.Oleg
2018-06-17[2.1.x] Fixed #29496 -- Fixed crash on Oracle when converting a non-unique fi...Mariusz Felisiak
2018-04-19Fixed #28574 -- Added QuerySet.explain().Tom
2018-04-11Fixed #29193 -- Prevented unnecessary foreign key drops when altering a uniqu...Jeremy Bowman
2018-04-03Fixed #29251 -- Added bytes to str conversion in LPad/RPad database functions...Mariusz Felisiak
2018-03-20Refs #29227 -- Made inspectdb generate BooleanField(null=True) rather than Nu...Tim Graham
2018-03-16Removed DatabaseFeatures.can_introspect_null.Tim Graham
2018-03-12Fixed typo in django/db/backends/base/schema.py.Tomer Chachamu
2018-03-12Removed unused variable in BaseDatabaseSchemaEditor.effective_default().Дилян Палаузов
2018-02-26Refs #28909 -- Simplifed code using unpacking generalizations.Mariusz Felisiak
2018-02-10Fixed #24747 -- Allowed transforms in QuerySet.order_by() and distinct(*fields).Matthew Wilkes
2018-02-07Renamed the allow_sliced_subqueries database feature to allow_sliced_subqueri...Mariusz Felisiak
2018-01-13Fixed #28542 -- Fixed deletion of primary key constraint if the new field is ...Tim Martin
2018-01-12Fixed #28996 -- Simplified some boolean constructs and removed trivial contin...Дилян Палаузов
2017-12-27Refs #28459 -- Improved performance of loading DurationField on SQLite and My...Sergey Fedoseev
2017-12-21Refs #28909 -- Simplifed code using unpacking generalizations.Nick Pope
2017-12-05Refs #28876 -- Fixed incorrect foreign key constraint name for models with qu...Mariusz Felisiak
2017-12-01Fixed #28849 -- Fixed referenced table and column rename on SQLite.Simon Charette
2017-12-01Fixed #28305 -- Fixed "Cannot change column 'x': used in a foreign key constr...Tim Graham
2017-11-28Fixed #28853 -- Updated connection.cursor() uses to use a context manager.Jon Dufresne
2017-11-14Fixed #28792 -- Fixed index name truncation of namespaced tables.Simon Charette
2017-11-07Fixed #28769 -- Replaced 'x if x else y' with 'x or y'.Дилян Палаузов
2017-11-03Clarified error message for when sqlplarse isn't installed.Nick
2017-10-06Fixed #28665 -- Change some database exceptions to NotImplementedError per PE...Simon Charette
2017-10-04Refs #28670 -- Moved LIMIT/OFFSET SQL to DatabaseOperations.limit_offset_sql().Mariusz Felisiak
2017-09-30Corrected typos in BaseDatabaseOperations exception messages.Mads Jensen
2017-09-29Used NotSupportedError for some unsupported database opreations per PEP 249.Mads Jensen
2017-09-25Removed DatabaseFeatures.supports_microsecond_precision.Tim Graham
2017-09-22Refs #27098 -- Removed DatabaseIntrospection.get_indexes() per deprecation ti...Tim Graham
2017-09-21Refs #28595 -- Added a hook to add execute wrappers for database queries.Shai Berger
2017-09-18Fixed #26608 -- Added support for window expressions (OVER clause).Mads Jensen
2017-09-18Changed default value of DatabaseFeatures.has_bulk_insert to True.Mads Jensen
2017-09-13Refs #27090 -- Added real database sequence introspection.Mariusz Felisiak
2017-09-11Fixed #28578 -- Renamed DatabaseCreation number arguments to suffix.Jon Dufresne
2017-08-12Fixed #27849 -- Added filtering support to aggregates.Tom
2017-08-12Fixed #23546 -- Added kwargs support for CursorWrapper.callproc() on Oracle.Mariusz Felisiak
2017-08-08Refs #23766 -- Added tests for CursorWrapper.callproc().Mariusz Felisiak
2017-08-08Fixed #28465 -- Unified index SQL creation in DatabaseSchemaEditorClaude Paroz
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-24Refs #24996 -- Removed unused BaseDatabaseFeatures.supports_select_related.Mariusz Felisiak
2017-07-20Fixed #28370 -- Deprecated the context arg of Field.from_db_value() and Expre...Tim Graham
2017-07-17Fixed #28391 -- Fixed Cast() with CharField and max_length on MySQL.Mariusz Felisiak
2017-07-11Fixed #14204 -- Enforced SQLite foreign key constraints.Claude Paroz
2017-06-29Fixed #28010 -- Added FOR UPDATE OF support to QuerySet.select_for_update().Ran Benita
2017-06-27Fixed #28046 -- Added the db_tablespace parameter to class-based indexes.Mariusz Felisiak
2017-06-22Fixed #28298 -- Prevented a primary key alteration from adding a foreign key ...Josh Schneier
2017-06-21Refs #25530 -- Deleted deferred SQL references on delete operation.Simon Charette
2017-06-21Refs #25530 -- Renamed deferred SQL references on rename operation.Simon Charette
2017-06-21Refs #25530 -- Tracked references of deferred SQL statements.Simon Charette