summaryrefslogtreecommitdiff
path: root/django/db/backends/base/schema.py
AgeCommit message (Expand)Author
2023-02-15[4.2.x] Fixed #34320 -- Make sure constraints names are obtained from truncat...nabil-rady
2022-12-28Fixed #18468 -- Added support for comments on columns and tables.kimsoungryoul
2022-12-27Fixed #34217 -- Fixed migration crash when removing check constraints on MySQ...DevilsAutumn
2022-12-22Fixed #34219 -- Preserved Char/TextField.db_collation when altering column type.Mariusz Felisiak
2022-10-31Used more augmented assignment statements.Nick Pope
2022-09-07Fixed #33982 -- Fixed migrations crash when adding model with ExclusionConstr...James Beith
2022-08-12Fixed #33919 -- Fixed adding AutoFields on PostgreSQL.Mariusz Felisiak
2022-08-02Fixed #33881 -- Added support for database collations to ArrayField(Char/Text...Mariusz Felisiak
2022-06-13Fixed #33773 -- Made Index with multiple fields respect DEFAULT_INDEX_TABLESP...Bruce Cutler
2022-05-26Fixed #23740 -- Fixed removing unique_together constraint if exists primary k...David Wobrock
2022-05-26Refs #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