summaryrefslogtreecommitdiff
path: root/django/db/backends
AgeCommit message (Expand)Author
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-07Fixed #27180 -- Fixed a crash in MySQL checks where SELECT @@sql_mode doesn't...Markus Gerards
2016-09-02Fixed #27097 -- Added index type introspection to built-in db backends.Akshesh
2016-09-02Fixed #25476 -- Allowed PostgreSQL introspection to work regardless of table ...Marcos Vives Del Sol
2016-08-30Removed double semicolon in SQL queryClaude Paroz
2016-08-30Refs #27097, #27098 -- Moved PostgreSQL index type introspection to get_const...Akshesh
2016-08-23Fixed #27061 -- Added a TEST['TEMPLATE'] setting for PostgreSQL.Chris Jerdonek
2016-08-20Fixed #27096 -- Fixed primary key introspection for sqlite3 backendClaude Paroz
2016-08-19Fixed #22288 -- Fixed F() expressions with the __range lookup.Matthew Wilkes
2016-08-17Fixed #27077 -- Made SQLite's in-memory database checks DRYer.Chris Jerdonek
2016-08-17Fixed #27078 -- Simplified "if" logic in SQLite's _get_test_db_name().Chris Jerdonek
2016-08-15Removed unnecessary registration of psycopg2 unicode extensions on Python 3Claude Paroz
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-08-02Fixed #26991 -- Fixed a crash in MySQL where SQL_AUTO_IS_NULL doesn't return ...Tim Graham
2016-08-01Fixed #26966 -- Made MySQL backend skip defaults for JSON columnsAdam Chainz
2016-07-27Fixed #26950 -- Removed obsolete DatabaseOperations SQL methods.Anderson Resende
2016-07-20Refs #24928 -- Added introspection support for UUIDFieldClaude Paroz
2016-07-18Removed unnecessary looping in sqlite3 SchemaEditor.akki
2016-07-15Refs #26889 -- Refactored SchemaEditor to allow backend specific indexes.Jon Dufresne
2016-07-15Fixed #26868 -- Changed MySQL version detection to use a query.Marc-Aurèle Brothier
2016-07-13Fixed #26889 -- Fixed missing PostgreSQL index in SchemaEditor.add_field().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-08Refs #17260 -- Prevented Oracle timezone conversion from stripping microseonds.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-07-06Fixed #26841 -- Avoid remake tables for altering togethers in sqlite3 (#6888)akki
2016-07-01Added package names to 'Error loading MySQLdb module' error.Adam Dobrawy
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 #26751 -- Made dbshell exit with the shell's error code.Étienne BERSAC
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-15Fixed broken links in docs and comments.Ville Skyttä
2016-06-06Fixed #26712 -- Avoided unnecessary SET TIMEZONE queries on PostgreSQL.Simon Charette
2016-06-03Fixed #26698 -- Fixed PostgreSQL dbshell crash on an empty database name.mieciu
2016-05-18Fixed #26627 -- Fixed on_commit callbacks execution order when callbacks make...Barthelemy Dagenais
2016-05-18Refs #25774 -- Made Oracle truncate microseconds if USE_TZ=False.Josh Smeaton
2016-05-17Fixed #26613 -- Made sqlite3 optional in SchemaEditor.quote_value().Philip Liberato
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ä