summaryrefslogtreecommitdiff
path: root/django/db/backends/base
AgeCommit message (Expand)Author
2017-12-01[1.11.x] Fixed #28305 -- Fixed "Cannot change column 'x': used in a foreign k...Tim Graham
2017-11-14[1.11.x] Fixed #28792 -- Fixed index name truncation of namespaced tables.Simon Charette
2017-06-22[1.11.x] Fixed #28298 -- Prevented a primary key alteration from adding a for...Josh Schneier
2017-05-09[1.11.x] Pass type to sql_alter_column_* where it was missing.Florian Apolloner
2017-05-01[1.11.x] Fixed typo in django/db/backends/base/schema.py comment.Tim Graham
2017-05-01[1.11.x] Fixed #28052 -- Prevented dropping Meta.indexes when changing db_ind...Markus Holtermann
2017-01-16Refs #16614 -- Called _prepare_cursor() on every created cursor.François Freitag
2017-01-14Fixed #27718 -- Added QuerySet.union(), intersection(), difference().Florian Apolloner
2017-01-11Refs #16614 -- Made QuerySet.iterator() use server-side cursors on PostgreSQL.François Freitag
2017-01-06Fixed #27690 -- Removed time.sleep(1) before dropping the test database.David Szotten
2016-12-30Fixed #27458 -- Fixed invalid sequence/index names when using "USER"."TABLE" ...Andrew Nester
2016-12-29Fixed #27615 -- Used timedeltas as arguments to Oracle database driver.Mariusz Felisiak
2016-12-28Fixed #27631 -- Prevented execution of transactional DDL statements when unsu...Simon Charette
2016-12-19Refs #19884 -- Removed DatabaseFeatures.can_introspect_max_length.Mariusz Felisiak
2016-12-02Fixed #27561 -- Added Oracle support for binary "or" operator.Mariusz Felisiak
2016-11-30Refs #24245 -- Added introspection for database defaults on Oracle.Mariusz Felisiak
2016-11-28Fixed #27321 -- Added detection for table case name sensitivity on MySQL.Adam Chainz
2016-11-23Fixed #27504 -- Allowed using the ORM after an error and rollback when autoco...Mark Young
2016-10-27Fixed #27327 -- Simplified time zone handling by requiring pytz.Tim Graham
2016-10-14Removed DatabaseFeatures.can_combine_inserts_with_and_without_auto_increment_pk.Tim Graham
2016-09-17Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham
2016-09-16Fixed #27235 -- Removed some usage of mutable default arguments.Chris Lamb
2016-09-12Fixed #27098 -- Deprecated DatabaseIntrospection.get_indexesClaude Paroz
2016-09-09Fixed #27062 -- Eased implementing select_for_update() on MSSQL.Mikhail Denisenko
2016-09-09Fixed #27195 -- Stopped dropping default when adding a nullable column.Simon Charette
2016-09-08Fixed #27170 -- Added DatabaseWrapper class attributes to ease subclassing.Chris Jerdonek
2016-09-02Fixed #27097 -- Added index type introspection to built-in db backends.Akshesh
2016-08-12Fixed #27030 -- Added contrib.postgres.indexes.GinIndex.Akshesh
2016-08-12Refs #27030 -- Added index type introspection on PostgreSQL.Akshesh
2016-08-12Refs #20888 -- Added index order introspection.Akshesh
2016-08-11Fixed #24442 -- Improved SchemaEditor's index name truncation.Akshesh
2016-08-08Fixed #26500 -- Added SKIP LOCKED support to select_for_update().Simon Charette
2016-08-05Fixed #26808 -- Added Meta.indexes for class-based indexes.Akshesh
2016-07-27Fixed #26950 -- Removed obsolete DatabaseOperations SQL methods.Anderson Resende
2016-07-15Refs #26889 -- Refactored SchemaEditor to allow backend specific indexes.Jon Dufresne
2016-07-08Fixed #26348 -- Added TruncTime and exposed it through the __time lookup.Simon Charette
2016-07-08Refs #25774, #26348 -- Allowed Trunc functions to operate with time fields.Simon Charette
2016-07-07Fixed #25317, #26090 -- Fixed swapping combinations of unique and db_index du...Jon Dufresne
2016-07-07Refs #26709 -- Added 'model' argument to SchemaEditor.add/remove_index()Akshesh
2016-07-07Fixed #26833 -- Fixed SchemaEditor._constraint_names() to handle features.upp...Jon Dufresne
2016-06-29Fixed #25694 -- Removed incorrect _uniq suffix on index names during migrations.Jon Dufresne
2016-06-28Fixed #26171 -- Made MySQL create an index on ForeignKeys with db_contraint=F...Aaron Elliot Ross
2016-06-27Fixed #26709 -- Added class-based indexes.Akshesh
2016-06-21Fixed #26781 -- Made table name case change a noop on SQLite.Simon Charette
2016-06-06Fixed #26712 -- Avoided unnecessary SET TIMEZONE queries on PostgreSQL.Simon Charette
2016-05-18Fixed #26627 -- Fixed on_commit callbacks execution order when callbacks make...Barthelemy Dagenais
2016-05-17Fixed #14415 -- Used the test database name in BaseDatabaseCreation.test_db_s...boaz85@gmail.com
2016-05-09Fixed #25005 -- Made date and time fields with auto_now/auto_now_add use effe...Iacopo Spalletti
2016-05-08Replaced `six.callable` with `callable`.Ville Skyttä
2016-05-07Fixed #26593 -- Leveraged deferrable_sql() in SchemaEditorMarkus Holtermann