summaryrefslogtreecommitdiff
path: root/django/db/backends/base/schema.py
AgeCommit message (Expand)Author
2022-06-13[4.1.x] Fixed #33773 -- Made Index with multiple fields respect DEFAULT_INDEX...Bruce Cutler
2022-05-26[4.1.x] Fixed #23740 -- Fixed removing unique_together constraint if exists p...David Wobrock
2022-05-26[4.1.x] Refs #23740 -- Added BaseDatabaseSchemaEditor._unique_constraint_name().David Wobrock
2022-05-12Refs #27064 -- Added RenameIndex migration operation.David Wobrock
2022-05-03Fixed #29854 -- Made _all_related_fields() return deterministically ordered f...Collin Anderson
2022-05-02Fixed #33413 -- Made migrations propage collations to related fields.David Wobrock
2022-04-29Refs #33413 -- Added collation to CharField/TextField's db_parameters.David Wobrock
2022-04-13Fixed #30511 -- Used identity columns instead of serials on PostgreSQL.Florian Apolloner
2022-04-06Fixed #33471 -- Made AlterField operation a noop when changing "choices".sarahboyce
2022-02-07Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2022-01-27Fixed #33462 -- Fixed migration crash when altering type of primary key with ...Mariusz Felisiak
2021-09-28Fixed #33125 -- Avoided redundant unique constraint when converting a non-uni...Jordan Bae
2021-09-01Fixed #33080 -- Preserved nullability of textual fields on Oracle.Mariusz Felisiak
2021-07-28Optimized BaseDatabaseSchemaEditor._effective_default() a bit,Chris Jerdonek
2021-07-27Refs #32962 -- Simplified NULL logic in BaseDatabaseSchemaEditor._iter_column...Chris Jerdonek
2021-07-27Fixed #32962 -- Consolidated string concatenations in BaseDatabaseSchemaEdito...Chris Jerdonek
2021-07-27Refs #32956 -- Changed "afterwards" to "afterward" in docs and comments.David Smith
2021-07-27Refs #32743 -- Fixed recreation of foreign key constraints when altering type...Jordan Bae
2021-07-26Fixed #32743 -- Added foreign key altering when altering type of referenced p...David Wobrock
2021-06-10Fixed #32832 -- Fixed adding BLOB/TEXT nullable field with default on MySQL 8...Mariusz Felisiak
2021-05-28Refs #32779 -- Changed DatabaseSchemaEditor._unique_sql()/_create_unique_sql(...Hannes Ljungberg
2021-05-24Fixed #32777 -- Passed table reference as a string to DatabaseSchemaEditor._i...Hannes Ljungberg
2021-05-21Fixed #32503 -- Fixed altering BLOB/TEXT field to non-nullable with default o...Yuekui Li
2021-04-27Fixed #32686 -- Removed unnecessary semicolon on collected multiline SQL for ...Hannes Ljungberg
2021-02-23Fixed #30916 -- Added support for functional unique constraints.Hannes Ljungberg
2021-02-09Fixed #32425 -- Fixed adding nullable field with default on MySQL.Jordan Bae
2021-01-26Fixed #32369 -- Fixed adding check constraints with pattern lookups and expre...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