summaryrefslogtreecommitdiff
path: root/django/db/backends/base/schema.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #470 -- Added support for database defaults on fields.Ian Foote2023-05-121-7/+81
* Refs #27236 -- Made more cosmetic edits to Meta.index_together deprecation.Mariusz Felisiak2023-05-051-0/+1
* Refs #34320 -- Stopped recreating check constraints when renaming fields.Mariusz Felisiak2023-03-021-2/+15
* Refs #30060, Refs #34217 -- Made SchemaEditor not generate SQL for CheckConst...Mariusz Felisiak2023-02-231-0/+2
* Fixed #34320 -- Make sure constraints names are obtained from truncated colum...nabil-rady2023-02-151-2/+6
* Fixed #18468 -- Added support for comments on columns and tables.kimsoungryoul2022-12-281-4/+87
* Fixed #34217 -- Fixed migration crash when removing check constraints on MySQ...DevilsAutumn2022-12-271-0/+2
* Fixed #34219 -- Preserved Char/TextField.db_collation when altering column type.Mariusz Felisiak2022-12-221-44/+28
* Used more augmented assignment statements.Nick Pope2022-10-311-1/+1
* Fixed #33982 -- Fixed migrations crash when adding model with ExclusionConstr...James Beith2022-09-071-1/+3
* Fixed #33919 -- Fixed adding AutoFields on PostgreSQL.Mariusz Felisiak2022-08-121-0/+2
* Fixed #33881 -- Added support for database collations to ArrayField(Char/Text...Mariusz Felisiak2022-08-021-2/+5
* Fixed #33773 -- Made Index with multiple fields respect DEFAULT_INDEX_TABLESP...Bruce Cutler2022-06-131-0/+3
* Fixed #23740 -- Fixed removing unique_together constraint if exists primary k...David Wobrock2022-05-261-1/+15
* Refs #23740 -- Added BaseDatabaseSchemaEditor._unique_constraint_name().David Wobrock2022-05-261-4/+12
* Refs #27064 -- Added RenameIndex migration operation.David Wobrock2022-05-121-0/+19
* Fixed #29854 -- Made _all_related_fields() return deterministically ordered f...Collin Anderson2022-05-031-5/+10
* Fixed #33413 -- Made migrations propage collations to related fields.David Wobrock2022-05-021-6/+19
* Refs #33413 -- Added collation to CharField/TextField's db_parameters.David Wobrock2022-04-291-8/+14
* Fixed #30511 -- Used identity columns instead of serials on PostgreSQL.Florian Apolloner2022-04-131-1/+4
* Fixed #33471 -- Made AlterField operation a noop when changing "choices".sarahboyce2022-04-061-15/+2
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-7/+19
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-288/+570
* Fixed #33462 -- Fixed migration crash when altering type of primary key with ...Mariusz Felisiak2022-01-271-1/+3
* Fixed #33125 -- Avoided redundant unique constraint when converting a non-uni...Jordan Bae2021-09-281-2/+4
* Fixed #33080 -- Preserved nullability of textual fields on Oracle.Mariusz Felisiak2021-09-011-2/+4
* Optimized BaseDatabaseSchemaEditor._effective_default() a bit,Chris Jerdonek2021-07-281-6/+7
* Refs #32962 -- Simplified NULL logic in BaseDatabaseSchemaEditor._iter_column...Chris Jerdonek2021-07-271-3/+3
* Fixed #32962 -- Consolidated string concatenations in BaseDatabaseSchemaEdito...Chris Jerdonek2021-07-271-33/+36
* Refs #32956 -- Changed "afterwards" to "afterward" in docs and comments.David Smith2021-07-271-1/+1
* Refs #32743 -- Fixed recreation of foreign key constraints when altering type...Jordan Bae2021-07-271-2/+2
* Fixed #32743 -- Added foreign key altering when altering type of referenced p...David Wobrock2021-07-261-1/+7
* Fixed #32832 -- Fixed adding BLOB/TEXT nullable field with default on MySQL 8...Mariusz Felisiak2021-06-101-2/+9
* Refs #32779 -- Changed DatabaseSchemaEditor._unique_sql()/_create_unique_sql(...Hannes Ljungberg2021-05-281-9/+10
* Fixed #32777 -- Passed table reference as a string to DatabaseSchemaEditor._i...Hannes Ljungberg2021-05-241-4/+4
* Fixed #32503 -- Fixed altering BLOB/TEXT field to non-nullable with default o...Yuekui Li2021-05-211-1/+8
* Fixed #32686 -- Removed unnecessary semicolon on collected multiline SQL for ...Hannes Ljungberg2021-04-271-1/+1
* Fixed #30916 -- Added support for functional unique constraints.Hannes Ljungberg2021-02-231-11/+19
* Fixed #32425 -- Fixed adding nullable field with default on MySQL.Jordan Bae2021-02-091-1/+8
* Fixed #32369 -- Fixed adding check constraints with pattern lookups and expre...Simon Charette2021-01-261-1/+5
* Fixed #26167 -- Added support for functional indexes.Hannes Ljungberg2021-01-131-7/+31
* Refs #26167 -- Made DatabaseSchemaEditor._create_index_sql()'s fields argumen...Hannes Ljungberg2020-12-231-5/+5
* Fixed #25253 -- Made AlterField operation a noop when changing attributes tha...Çağıl Uluşahin2020-10-151-2/+18
* Fixed #31777 -- Added support for database collations to Char/TextFields.Tom Carrick2020-09-211-1/+26
* Fixed #27417 -- Made RenameField operation a noop for field name case changes...Mariusz Felisiak2020-09-041-1/+1
* Fixed #31826 -- Made AlterField operation a noop when adding db_column.Iuri de Silvio2020-08-141-2/+8
* Fixed #31825 -- Made RenameField operation a noop for fields with db_column.Iuri de Silvio2020-08-131-0/+9
* Fixed #31735 -- Fixed migrations crash on namespaced inline FK addition on Po...Simon Charette2020-06-241-0/+2
* Fixed #31702 -- Added support for PostgreSQL opclasses in UniqueConstraint.Hannes Ljungberg2020-06-161-7/+17
* Fixed #30913 -- Added support for covering indexes on PostgreSQL 11+.Hannes Ljungberg2020-06-041-23/+44