summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2018-11-26Refs #29722 -- Added introspection of materialized views for Oracle.Mariusz Felisiak
2018-11-23Refs #23801 -- Made integer field max_length warning show correct field type.Nick Pope
2018-11-23Removed redundant BigIntegerField.empty_strings_allowed (already inherited).Nick Pope
2018-11-21Fixed #29974 -- Fixed non-truthy primary key values for QuerySet.bulk_update().Tom Forbes
2018-11-21Fixed #29949 -- Refactored db introspection identifier converters.Mariusz Felisiak
2018-11-20Changed BaseDatabaseSchemaEditor._effective_default() to staticmethod.Tim Graham
2018-11-19Refs #29722 -- Added introspection of partitions for PostgreSQL.Nick Pope
2018-11-19Fixed cached_properties that share a common property.Sergey Fedoseev
2018-11-17Added BaseDatabaseSchemaEditor._effective_default() to allow testing without ...Tim Graham
2018-11-17Fixed #29505 -- Removed SchemaEditor's calling of callable defaults.Tim Graham
2018-11-17Refs #29908 -- Optimized known related objects assignment.Simon Charette
2018-11-15Fixed #17930 -- Allowed ORing (|) with sliced QuerySets.Ian Foote
2018-11-14Fixed #29835 -- Made RelatedFieldListFilter respect ModelAdmin.ordering.Hasan Ramezani
2018-11-13Fixed #29788 -- Added support for Oracle Managed File (OMF) tablespaces.Mariusz Felisiak
2018-11-13Fixed #29641 -- Added support for unique constraints in Meta.constraints.Simon Charette
2018-11-13Refs #29641 -- Refactored database schema constraint creation.Simon Charette
2018-11-09Fixed #29934 -- Added sqlparse as a require dependency.Tim Graham
2018-11-09Removed unused 'tz' variable in typecast_timestamp().Srinivas Reddy Thatiparthy
2018-11-08Fixed #29908 -- Fixed setting of foreign key after related set access if Fore...Simon Charette
2018-11-04Removed DatabaseOperation.savepoint_create/rollback_sql() on Oracle.Tom Forbes
2018-11-01Fixed #29886 -- Fixed unaccent lookup when PostgreSQL's standard_conforming_s...Jayantha Gumballi
2018-10-29Fixed #29547 -- Added support for partial indexes.Mads Jensen
2018-10-29Fixed #29882 -- Added events and stored routines to MySQL's cloned test datab...thomazzo
2018-10-29Fixed #29897 -- Fixed autodetector's swappable MTI dependency resolution.Simon Charette
2018-10-29Refs #29897 -- Moved autodetector swappable dependency resolution to a method.Simon Charette
2018-10-29Refs #23322 -- Removed unnecessary "and" clause in the autodetector.Simon Charette
2018-10-29Fixed #29868 -- Retained database constraints on SQLite table rebuilds.Simon Charette
2018-10-28Fixed #29896 -- Fixed incorrect Model.save() cache relation clearing for fore...Tim Graham
2018-10-27Fixed #29763 -- Added support for column renaming on SQLite.Hampus Dunström
2018-10-25Refs #27025 -- Removed obsolete sqlite3 transaction management workaround for...Tim Graham
2018-10-25Fixed #29534 -- Made dbshell use rlwrap on Oracle if available.Mariusz Felisiak
2018-10-25Fixed #29827 -- Fixed reuse of test databases with --keepdb on MySQL.Sergey Fedoseev
2018-10-25Removed useless check in sqlite's DatabaseWrapper._savepoint_allowed().Tim Graham
2018-10-25Made DatabaseFeatures.uses_savepoints default to True.Tim Graham
2018-10-24Fixed #29869 -- Made UUIDField.to_python() convert integers.Sanyam Khurana
2018-10-24Fixed #29721 -- Ensured migrations are applied and recorded atomically.Sanyam Khurana
2018-10-24Fixed F841 flake8 warning.Mariusz Felisiak
2018-10-22Fixed #27595 -- Made ForeignKey.get_col() follow target chains.Simon Charette
2018-10-21Fixed #29870 -- Added DurationField introspection for Oracle and PostgreSQL.Mariusz Felisiak
2018-10-17Moved make_hashable() to django.utils and added tests.aspalding
2018-10-17Fixed #21171 -- Avoided starting a transaction when a single (or atomic queri...Florian Apolloner
2018-10-15Fixed #29725 -- Removed unnecessary join in QuerySet.count() and exists() on ...oliver
2018-10-15Fixed #29845 -- Fixed Cast crash on MySQL when casting to DecimalField.Mariusz Felisiak
2018-10-13Fixed various comments in django/db/backends/oracle/base.py.Mariusz Felisiak
2018-10-11Fixed #29814 -- Added support for NoneType serialization in migrations.Patrik Sletmo
2018-10-11Fixed #29836 -- Bumped required cx_Oracle to 6.0.Mariusz Felisiak
2018-10-09Simplified handling of DurationField values on MySQL/MariaDB.Sergey Fedoseev
2018-10-09Capitalized "Python" in docs and comments.Jon Dufresne
2018-10-08Replaced kwargs.pop() with keyword-only arguments.Jon Dufresne
2018-10-08Refs #27795 -- Removed force_text() usage in db/models/sql/query.py.Jon Dufresne