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
/
migrations
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed #470 -- Added support for database defaults on fields.
Ian Foote
2023-05-12
1
-0
/
+2
*
Refs #34534 -- Reduced Add/RemoveConstraint and Add/RenameIndex operations wh...
Akash Kumar Sen
2023-05-09
1
-0
/
+12
*
Fixed #34529, Refs #34525 -- Reduced index operations with Meta.indexes/index...
Mariusz Felisiak
2023-05-03
1
-0
/
+65
*
Fixed #34528 -- Reduced Add/RemoveIndex operations when optimizing migrations.
Mariusz Felisiak
2023-05-01
1
-0
/
+5
*
Fixed #34420 -- Corrected the order of imports in generated migration files.
Andy Chosak
2023-03-20
1
-1
/
+4
*
Fixed #34333 -- Fixed migration operations ordering when adding index/constra...
Durval Carvalho
2023-03-10
1
-0
/
+20
*
Fixed #34366 -- Reduced AlterField operations when optimizing migrations.
Laurent Tramoy
2023-02-24
1
-3
/
+3
*
Fixed #34250 -- Fixed renaming model with m2m relation to a model with the sa...
DevilsAutumn
2023-02-14
1
-14
/
+6
*
Refs #33476 -- Applied Black's 2023 stable style.
David Smith
2023-02-01
1
-2
/
+2
*
Refs #32528 -- Simplified MigrationAutodetector._sort_migrations().
Nick Pope
2023-01-19
1
-4
/
+3
*
Fixed #32528 -- Replaced django.utils.topological_sort with graphlib.Topologi...
Nick Pope
2023-01-19
1
-9
/
+5
*
Refs #34233 -- Used types.NoneType.
Nick Pope
2023-01-18
1
-2
/
+2
*
Fixed #18468 -- Added support for comments on columns and tables.
kimsoungryoul
2022-12-28
3
-0
/
+63
*
Fixed #34050 -- Replaced invalid chars in migration names with '_'.
Adam Johnson
2022-09-27
1
-1
/
+3
*
Fixed #33953 -- Reverted "Fixed #33201 -- Made RenameModel operation a noop f...
Iuri de Silvio
2022-08-26
1
-6
/
+5
*
Fixed #33938 -- Fixed migration crash for m2m with a through model in another...
Simon Charette
2022-08-25
1
-1
/
+1
*
Fixed #33916 -- Added support for serialization of enum.Flag in migrations.
Willem Van Onsem
2022-08-25
1
-2
/
+15
*
Refs #27236 -- Reverted "Refs #27236 -- Added generic mechanism to handle the...
Mariusz Felisiak
2022-07-26
2
-10
/
+1
*
Refs #27236 -- Reverted AlterIndexTogether deprecation.
Mariusz Felisiak
2022-07-26
1
-8
/
+0
*
Refs #27236 -- Made cosmetic edits to Meta.index_together deprecation.
Mariusz Felisiak
2022-07-21
1
-2
/
+8
*
Fixed #33848 -- Optimized StateApps.clone().
Iuri de Silvio
2022-07-16
1
-3
/
+6
*
Fixed #27236 -- Deprecated Meta.index_together in favor of Meta.indexes.
David Wobrock
2022-07-12
1
-0
/
+8
*
Refs #27236 -- Added generic mechanism to handle the deprecation of migration...
David Wobrock
2022-07-08
2
-1
/
+10
*
Fixed #31788 -- Fixed migration optimization after altering field to ManyToMa...
David Wobrock
2022-06-02
1
-2
/
+3
*
Refs #27064 -- Made migrations generate RenameIndex operations when moving in...
David Wobrock
2022-05-17
1
-0
/
+47
*
Refs #27064 -- Refactored out MigrationAutodetector.create_renamed_fields().
David Wobrock
2022-05-17
1
-25
/
+59
*
Refs #27064 -- Made migrations generate RenameIndex operations when renaming ...
David Wobrock
2022-05-16
1
-4
/
+47
*
Fixed #33710 -- Made RenameIndex operation a noop when the old and new name m...
David Wobrock
2022-05-16
1
-0
/
+3
*
Refs #27064 -- Added RenameIndex migration operation.
David Wobrock
2022-05-12
3
-0
/
+170
*
Fixed #33509 -- Added "(no-op)" to sqlmigrate output for operations without S...
Adam Johnson
2022-04-21
1
-10
/
+12
*
Fixed #33605 -- Fixed migration crash when altering RegexValidator to pre-com...
Brian Helba
2022-04-04
1
-0
/
+2
*
Refs #32365 -- Made migration writer use datetime.timezone.utc.
Carlton Gibson
2022-03-23
1
-6
/
+3
*
Fixed #33572 -- Implemented CreateModel/AlterModelManagers reduction.
Adam Johnson
2022-03-11
1
-0
/
+13
*
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Mariusz Felisiak
2022-02-07
4
-17
/
+28
*
Refs #33476 -- Reformatted code with Black.
django-bot
2022-02-07
18
-849
/
+1380
*
Refs #33476 -- Refactored problematic code before reformatting by Black.
Mariusz Felisiak
2022-02-03
1
-2
/
+1
*
Fixed #33480 -- Fixed makemigrations crash when renaming field of renamed model.
Kirill Safronov
2022-02-01
1
-1
/
+1
*
Fixed #33449 -- Fixed makemigrations crash on models without Meta.order_with_...
Fabian Büchler
2022-01-21
1
-5
/
+2
*
Fixed #33402 -- Optimized multiple AlterFooTogether operations.
David Wobrock
2022-01-04
1
-1
/
+12
*
Refs #29026 -- Allowed customizing InteractiveMigrationQuestioner's prompt de...
Jacob Walls
2022-01-03
1
-13
/
+22
*
Fixed #23273 -- Avoided creation of django_migrations table when there are no...
Jacob Walls
2021-12-30
1
-2
/
+6
*
Fixed #33305 -- Fixed autodetector crash for ForeignKey with hardcoded "to" a...
Baptiste Mispelon
2021-11-22
1
-1
/
+1
*
Fixed #33234 -- Fixed autodetector crash for proxy models inheriting from non...
Mariusz Felisiak
2021-11-02
1
-0
/
+2
*
Fixed #33201 -- Made RenameModel operation a noop for models with db_table.
Iuri de Silvio
2021-10-27
1
-5
/
+6
*
Fixed #31503 -- Made autodetector remove unique/index_together before alterin...
David Wobrock
2021-10-25
1
-7
/
+46
*
Fixed #33197 -- Made field rename with prior matching db_column change a noop.
Simon Charette
2021-10-19
2
-2
/
+23
*
Fixed #23953 -- Made makemigrations continue number sequence for squashed mig...
Jacob Walls
2021-10-15
1
-1
/
+4
*
Fixed #29470 -- Logged makemigrations automatic decisions in non-interactive ...
Jacob Walls
2021-10-12
1
-0
/
+32
*
Refs #32900 -- Restored '[y/N]' in questioner prompt when merging migrations.
Seonghyeon Cho
2021-10-11
1
-1
/
+1
*
Fixed #23408 -- Added migrations questioner prompt for adding unique fields w...
Jacob Walls
2021-10-06
2
-0
/
+33
[next]