summaryrefslogtreecommitdiff
path: root/django/db/backends
AgeCommit message (Expand)Author
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
2017-06-20Refs #25530 -- Changed _create_index_name to take a table as first parameter.Simon Charette
2017-06-20Fixed #27869 -- Added fastupdate and gin_pending_list_limit params to GinIndex.Mads Jensen
2017-06-19Fixed #28322 -- Added dbshell support for MySQL client TLS certs.Paul Tiplady
2017-06-13Fixed #27830 -- Used distutils.version.LooseVersion for version parsing.chillaranand
2017-06-08Fixed #28103 -- Added quarter extract, truncation, and lookup.Mads Jensen
2017-06-06Fixed #28275 -- Added more hooks to SchemaEditor._alter_field().Florian Apolloner
2017-06-06Refs #20483 -- Removed unneeded column from _foreign_key_constraints() on Ora...Mariusz Felisiak
2017-06-02Fixed #28260 -- Allowed customizing the test tablespace initial and autoexten...Mariusz Felisiak
2017-06-02Fixed #28258 -- Optimized Oracle introspection by using LISTAGG.Mariusz Felisiak
2017-06-01Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne
2017-06-01Refs #26682 -- Added AutoField introspection on Oracle.Mariusz Felisiak
2017-06-01Fixed #26682 -- Added support for Oracle identity columns.Mariusz Felisiak
2017-05-27Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne
2017-05-24Fixed #27860 -- Dropped varchar_pattern_ops/text_pattern_ops index before alt...Mariusz Felisiak
2017-05-23Fixed #27859 -- Ignored db_index for TextField/BinaryField on Oracle and MySQL.Mariusz Felisiak
2017-05-23Refs #27859 -- Added DatabaseWrapper.display_name.Mariusz Felisiak
2017-05-15Fixed #28197 -- Fixed introspection of index field ordering on PostgreSQL.Tim Schneider
2017-05-14Refs #27859 -- Refactored BaseDatabaseValidation to use check_field_type().Mariusz Felisiak
2017-05-09Pass type to sql_alter_column_* where it was missing.Florian Apolloner
2017-05-01Fixed typo in django/db/backends/base/schema.py comment.Tim Graham
2017-05-01Fixed #28052 -- Prevented dropping Meta.indexes when changing db_index to False.Markus Holtermann
2017-04-28Fixed #28138 -- Used ​output type handler instead of numbersAsStrings on Or...Mariusz Felisiak
2017-04-27Fixed force_text() import in Oracle backend.Tim Graham
2017-04-27Refs #27795 -- Replaced many force_text() with str()Claude Paroz
2017-04-25Fixed #28116 -- Used error code filtering in PostgreSQL test database creation.Mariusz Felisiak
2017-04-21Updated Oracle docs links to Oracle 12c.Mariusz Felisiak
2017-04-18Removed unused DatabaseIntrospection._name_to_index() from Oracle backend.Mariusz Felisiak
2017-04-17Refs #27795 -- Removed unneeded force_text calls from the Oracle backend.Mariusz Felisiak
2017-04-13Refs #25406 -- Removed exception hiding in MySQL test database creation durin...Mariusz Felisiak
2017-04-10Fixed #26788 -- Fixed QuerySet.update() crash when updating a geometry to ano...Sergey Fedoseev
2017-04-10Fixed #25406 -- Removed exception hiding in PostgreSQL test database creation...Mariusz Felisiak
2017-04-10Used NotSupportedError instead of DatabaseError in SQLCompiler.as_sql().Mariusz Felisiak
2017-04-07Fixed #28038 -- Restored casting to text of builtin lookups on PostgreSQL.Simon Charette
2017-04-07Fixed #23147 -- Disabled a limit/offset on a query with select_for_update on ...Mariusz Felisiak
2017-04-02Fixed #27928 -- Avoided SET/DROP DEFAULT unless a field changes from null to ...Simon Charette
2017-04-01Fixed #27954 -- Allowed keyboard interrupt to abort queries in PostgreSQL dbs...Chris Sinchok
2017-03-28Updated cx_Oracle arraysize comment.Tim Graham
2017-03-24Refs #21160 -- Replaced DatabaseFeatures.supports_1000_query_parameters by a ...Mariusz Felisiak
2017-03-21Fixed #27966 -- Bumped required psycopg2 version to 2.5.4.Mariusz Felisiak
2017-03-10Fixed #27924 -- Added support for cx_Oracle 5.3.Mariusz Felisiak
2017-03-08Fixed #24365 -- Made inspectdb translate MySQL unsigned integer columns to po...Mariusz Felisiak
2017-03-04Refs #27795 -- Removed unneeded force_text callsClaude Paroz
2017-03-03Refs #27860 -- Simplified deleting indexes on PostgreSQL using "IF EXISTS".Mariusz Felisiak
2017-03-01Removed PostgreSQL version detection for psycopg2 < 2.0.12.Tim Graham
2017-02-28Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan