summaryrefslogtreecommitdiff
path: root/django/db/backends/base/schema.py
AgeCommit message (Expand)Author
2021-02-09[3.2.x] Fixed #32425 -- Fixed adding nullable field with default on MySQL.Jordan Bae
2021-01-26[3.2.x] Fixed #32369 -- Fixed adding check constraints with pattern lookups a...Simon Charette
2021-01-13Fixed #26167 -- Added support for functional indexes.Hannes Ljungberg
2020-12-23Refs #26167 -- Made DatabaseSchemaEditor._create_index_sql()'s fields argumen...Hannes Ljungberg
2020-10-15Fixed #25253 -- Made AlterField operation a noop when changing attributes tha...Çağıl Uluşahin
2020-09-21Fixed #31777 -- Added support for database collations to Char/TextFields.Tom Carrick
2020-09-04Fixed #27417 -- Made RenameField operation a noop for field name case changes...Mariusz Felisiak
2020-08-14Fixed #31826 -- Made AlterField operation a noop when adding db_column.Iuri de Silvio
2020-08-13Fixed #31825 -- Made RenameField operation a noop for fields with db_column.Iuri de Silvio
2020-06-24Fixed #31735 -- Fixed migrations crash on namespaced inline FK addition on Po...Simon Charette
2020-06-16Fixed #31702 -- Added support for PostgreSQL opclasses in UniqueConstraint.Hannes Ljungberg
2020-06-04Fixed #30913 -- Added support for covering indexes on PostgreSQL 11+.Hannes Ljungberg
2020-04-30Fixed #20581 -- Added support for deferrable unique constraints.Ian Foote
2020-04-24Refs #30913 -- Added BaseDatabaseSchemaEditor._index_condition_sql().Hannes Ljungberg
2020-04-23Fixed #29224 -- Fixed removing index_together indexes if exists unique_togeth...David Wobrock
2020-03-25Fixed #31399 -- Made SchemaEditor._alter_field() ignore foreign key constrain...Tim Graham
2020-03-24Fixed #31392 -- Avoided unnecessary SchemaEditor.effective_default() calls wh...Shipeng Feng
2019-11-18Replaced unnecessary str()/bytes() calls with literals.Jon Dufresne
2019-09-11Fixed #30591 -- Fixed recreation of foreign key constraints on MySQL when alt...Adnan Umer
2019-08-22Fixed #30712 -- Allowed BLOB/TEXT defaults on MySQL 8.0.13+.Nasir Hussain
2019-08-21Fixed #21039 -- Added AddIndexConcurrently/RemoveIndexConcurrently operations...Mads Jensen
2019-08-02Fixed #30661 -- Added models.SmallAutoField.Nick Pope
2019-08-02Removed obsolete mentions of a check constraint in BaseDatabaseSchemaEditor.a...Mariusz Felisiak
2019-05-07Fixed #30444 -- Moved SQL generation for tables to BaseDatabaseSchemaEditor.t...Rob Golding-Day
2019-03-17Refs #30172 -- Prevented removing a model Meta's index/unique_together from r...Paveł Tyślacki
2019-03-17Refs #30172 -- Prevented removing a field's check or unique constraint from r...Paveł Tyślacki
2019-01-29Fixed #30108 -- Allowed adding foreign key constraints in the same statement ...Dan Tao
2019-01-12Fixed #30062 -- Added support for unique conditional constraints.Paveł Tyślacki
2019-01-12Used None as the empty value for condition in Index's SQL construction.Paveł Tyślacki
2019-01-10Renamed variables after generalization of constraints.Paveł Tyślacki
2019-01-01Fixed #30060 -- Moved SQL generation for indexes and constraints to SchemaEdi...Paveł Tyślacki
2018-12-22Renamed SQLite3 references to to SQLite.Simon Charette
2018-11-21Fixed #29949 -- Refactored db introspection identifier converters.Mariusz Felisiak
2018-11-20Changed BaseDatabaseSchemaEditor._effective_default() to staticmethod.Tim Graham
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-13Refs #29641 -- Refactored database schema constraint creation.Simon Charette
2018-10-29Fixed #29547 -- Added support for partial indexes.Mads Jensen
2018-10-02Added django.db.backends.utils.names_digest() to remove redundant code.Jon Dufresne
2018-09-25Fixed #29778 -- Fixed quoting of unique index names.Oleg
2018-09-25Refs #27795 -- Removed force_bytes() usage in db/backends/base/schema.py.Jon Dufresne
2018-07-10Fixed #11964 -- Added support for database check constraints.Ian Foote
2018-06-29Fixed #28077 -- Added support for PostgreSQL opclasses in Index.Ian Foote
2018-06-17Fixed #29496 -- Fixed crash on Oracle when converting a non-unique field to p...Mariusz Felisiak
2018-04-11Fixed #29193 -- Prevented unnecessary foreign key drops when altering a uniqu...Jeremy Bowman
2018-03-12Fixed typo in django/db/backends/base/schema.py.Tomer Chachamu
2018-03-12Removed unused variable in BaseDatabaseSchemaEditor.effective_default().Дилян Палаузов
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-21Refs #28909 -- Simplifed code using unpacking generalizations.Nick Pope