index
:
delta/python-packages/django.git
1.8
15667
16682
24046
24215
24525
26176
3.2-man-page
4.0/make-zoneinfo-default-timezone-implementation-squashed
alex-patch-1
attic/boulder-oracle-sprint
attic/full-history
attic/generic-auth
attic/gis
attic/i18n
attic/magic-removal
attic/multi-auth
attic/multiple-db-support
attic/new-admin
attic/newforms-admin
attic/per-object-permissions
attic/queryset-refactor
attic/schema-evolution
attic/schema-evolution-ng
attic/search-api
attic/sqlalchemy
attic/unicode
c/29988-allow-f-strings
c/32409-async-tests-cannot-call-orm
c/append-slash-opt-out
c/replace-utcnow
c/use-bpo-extlink
dep0005
dep5
fix-cache-test
fix/remove-stray-file
issue/31570
link-to-code-of-conduct
main
make-zoneinfo-default-timezone-implementation
master
remove-unnecesary-if-wrap
selenium-updates
sir-sigurd-patch-1
soc2009/admin-ui
soc2009/http-wsgi-improvements
soc2009/i18n-improvements
soc2009/model-validation
soc2009/multidb
soc2009/test-improvements
soc2010/app-loading
soc2010/query-refactor
soc2010/test-refactor
stable/0.90.x
stable/0.91.x
stable/0.95.x
stable/0.96.x
stable/1.0.x
stable/1.1.x
stable/1.10.x
stable/1.11.x
stable/1.2.x
stable/1.3.x
stable/1.4.x
stable/1.5.x
stable/1.6.x
stable/1.7.x
stable/1.8.x
stable/1.9.x
stable/2.0.x
stable/2.1.x
stable/2.2.x
stable/3.0.x
stable/3.1.x
stable/3.2.x
stable/4.0.x
stable/4.1.x
stable/4.2.x
swap-closing-quote-period-in-admin-i18nable-literal
ticket-25055
ticket-31342
update-next-docs-version
github.com: django/django.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
db
/
backends
/
base
/
schema.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed #470 -- Added support for database defaults on fields.
Ian Foote
2023-05-12
1
-7
/
+81
*
Refs #27236 -- Made more cosmetic edits to Meta.index_together deprecation.
Mariusz Felisiak
2023-05-05
1
-0
/
+1
*
Refs #34320 -- Stopped recreating check constraints when renaming fields.
Mariusz Felisiak
2023-03-02
1
-2
/
+15
*
Refs #30060, Refs #34217 -- Made SchemaEditor not generate SQL for CheckConst...
Mariusz Felisiak
2023-02-23
1
-0
/
+2
*
Fixed #34320 -- Make sure constraints names are obtained from truncated colum...
nabil-rady
2023-02-15
1
-2
/
+6
*
Fixed #18468 -- Added support for comments on columns and tables.
kimsoungryoul
2022-12-28
1
-4
/
+87
*
Fixed #34217 -- Fixed migration crash when removing check constraints on MySQ...
DevilsAutumn
2022-12-27
1
-0
/
+2
*
Fixed #34219 -- Preserved Char/TextField.db_collation when altering column type.
Mariusz Felisiak
2022-12-22
1
-44
/
+28
*
Used more augmented assignment statements.
Nick Pope
2022-10-31
1
-1
/
+1
*
Fixed #33982 -- Fixed migrations crash when adding model with ExclusionConstr...
James Beith
2022-09-07
1
-1
/
+3
*
Fixed #33919 -- Fixed adding AutoFields on PostgreSQL.
Mariusz Felisiak
2022-08-12
1
-0
/
+2
*
Fixed #33881 -- Added support for database collations to ArrayField(Char/Text...
Mariusz Felisiak
2022-08-02
1
-2
/
+5
*
Fixed #33773 -- Made Index with multiple fields respect DEFAULT_INDEX_TABLESP...
Bruce Cutler
2022-06-13
1
-0
/
+3
*
Fixed #23740 -- Fixed removing unique_together constraint if exists primary k...
David Wobrock
2022-05-26
1
-1
/
+15
*
Refs #23740 -- Added BaseDatabaseSchemaEditor._unique_constraint_name().
David Wobrock
2022-05-26
1
-4
/
+12
*
Refs #27064 -- Added RenameIndex migration operation.
David Wobrock
2022-05-12
1
-0
/
+19
*
Fixed #29854 -- Made _all_related_fields() return deterministically ordered f...
Collin Anderson
2022-05-03
1
-5
/
+10
*
Fixed #33413 -- Made migrations propage collations to related fields.
David Wobrock
2022-05-02
1
-6
/
+19
*
Refs #33413 -- Added collation to CharField/TextField's db_parameters.
David Wobrock
2022-04-29
1
-8
/
+14
*
Fixed #30511 -- Used identity columns instead of serials on PostgreSQL.
Florian Apolloner
2022-04-13
1
-1
/
+4
*
Fixed #33471 -- Made AlterField operation a noop when changing "choices".
sarahboyce
2022-04-06
1
-15
/
+2
*
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Mariusz Felisiak
2022-02-07
1
-7
/
+19
*
Refs #33476 -- Reformatted code with Black.
django-bot
2022-02-07
1
-288
/
+570
*
Fixed #33462 -- Fixed migration crash when altering type of primary key with ...
Mariusz Felisiak
2022-01-27
1
-1
/
+3
*
Fixed #33125 -- Avoided redundant unique constraint when converting a non-uni...
Jordan Bae
2021-09-28
1
-2
/
+4
*
Fixed #33080 -- Preserved nullability of textual fields on Oracle.
Mariusz Felisiak
2021-09-01
1
-2
/
+4
*
Optimized BaseDatabaseSchemaEditor._effective_default() a bit,
Chris Jerdonek
2021-07-28
1
-6
/
+7
*
Refs #32962 -- Simplified NULL logic in BaseDatabaseSchemaEditor._iter_column...
Chris Jerdonek
2021-07-27
1
-3
/
+3
*
Fixed #32962 -- Consolidated string concatenations in BaseDatabaseSchemaEdito...
Chris Jerdonek
2021-07-27
1
-33
/
+36
*
Refs #32956 -- Changed "afterwards" to "afterward" in docs and comments.
David Smith
2021-07-27
1
-1
/
+1
*
Refs #32743 -- Fixed recreation of foreign key constraints when altering type...
Jordan Bae
2021-07-27
1
-2
/
+2
*
Fixed #32743 -- Added foreign key altering when altering type of referenced p...
David Wobrock
2021-07-26
1
-1
/
+7
*
Fixed #32832 -- Fixed adding BLOB/TEXT nullable field with default on MySQL 8...
Mariusz Felisiak
2021-06-10
1
-2
/
+9
*
Refs #32779 -- Changed DatabaseSchemaEditor._unique_sql()/_create_unique_sql(...
Hannes Ljungberg
2021-05-28
1
-9
/
+10
*
Fixed #32777 -- Passed table reference as a string to DatabaseSchemaEditor._i...
Hannes Ljungberg
2021-05-24
1
-4
/
+4
*
Fixed #32503 -- Fixed altering BLOB/TEXT field to non-nullable with default o...
Yuekui Li
2021-05-21
1
-1
/
+8
*
Fixed #32686 -- Removed unnecessary semicolon on collected multiline SQL for ...
Hannes Ljungberg
2021-04-27
1
-1
/
+1
*
Fixed #30916 -- Added support for functional unique constraints.
Hannes Ljungberg
2021-02-23
1
-11
/
+19
*
Fixed #32425 -- Fixed adding nullable field with default on MySQL.
Jordan Bae
2021-02-09
1
-1
/
+8
*
Fixed #32369 -- Fixed adding check constraints with pattern lookups and expre...
Simon Charette
2021-01-26
1
-1
/
+5
*
Fixed #26167 -- Added support for functional indexes.
Hannes Ljungberg
2021-01-13
1
-7
/
+31
*
Refs #26167 -- Made DatabaseSchemaEditor._create_index_sql()'s fields argumen...
Hannes Ljungberg
2020-12-23
1
-5
/
+5
*
Fixed #25253 -- Made AlterField operation a noop when changing attributes tha...
Çağıl Uluşahin
2020-10-15
1
-2
/
+18
*
Fixed #31777 -- Added support for database collations to Char/TextFields.
Tom Carrick
2020-09-21
1
-1
/
+26
*
Fixed #27417 -- Made RenameField operation a noop for field name case changes...
Mariusz Felisiak
2020-09-04
1
-1
/
+1
*
Fixed #31826 -- Made AlterField operation a noop when adding db_column.
Iuri de Silvio
2020-08-14
1
-2
/
+8
*
Fixed #31825 -- Made RenameField operation a noop for fields with db_column.
Iuri de Silvio
2020-08-13
1
-0
/
+9
*
Fixed #31735 -- Fixed migrations crash on namespaced inline FK addition on Po...
Simon Charette
2020-06-24
1
-0
/
+2
*
Fixed #31702 -- Added support for PostgreSQL opclasses in UniqueConstraint.
Hannes Ljungberg
2020-06-16
1
-7
/
+17
*
Fixed #30913 -- Added support for covering indexes on PostgreSQL 11+.
Hannes Ljungberg
2020-06-04
1
-23
/
+44
[next]