index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
db
/
migrations
/
operations
/
base.py
Age
Commit message (
Expand
)
Author
2026-04-20
Refs #36005 -- Made OperationCategory subclass StrEnum.
Clifford Gama
2025-02-16
Refs #35704 -- Used copy.replace() in Operation.reduce() methods.
Adam Johnson
2024-01-17
Fixed #31700 -- Made makemigrations command display meaningful symbols for ea...
Amir Karimi
2022-07-26
Refs #27236 -- Reverted "Refs #27236 -- Added generic mechanism to handle the...
Mariusz Felisiak
2022-07-08
Refs #27236 -- Added generic mechanism to handle the deprecation of migration...
David Wobrock
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2020-05-28
Fixed #31468 -- Allowed specifying migration filename in Operation.
Adam Johnson
2020-04-09
Replaced Operation._get_model_tuple() by ModelTuple.from_model().
Simon Charette
2020-04-09
Made Operation.references_model/references_field require app_label.
Simon Charette
2020-04-09
Refs #22608 -- Made app_label required when optimizing migrations.
Simon Charette
2018-08-01
Fixed typos in comments and docs.
luz.paz
2018-07-11
Removed in_between from Operation.reduce()'s signature.
Simon Charette
2018-07-11
Introduced ModelTuple to remove migrations boilerplate.
Simon Charette
2018-07-11
Fixed #27768 -- Allowed migration optimization of CreateModel order.
Simon Charette
2017-12-30
Moved _get_model_tuple() to the base Operation class.
Simon Charette
2017-02-28
Refs #27656 -- Updated django.db docstring verbs according to PEP 257.
Anton Samarchyan
2017-01-19
Refs #23919 -- Stopped inheriting from object to define new style classes.
Simon Charette
2017-01-18
Refs #23919 -- Removed encoding preambles and future imports
Claude Paroz
2016-01-23
Fixed #24109 -- Allowed RunSQL and RunPython operations to be elided.
Simon Charette
2016-01-23
Fixed #26064 -- Moved operation reduction logic to their own class.
Simon Charette
2015-04-18
Fixed #23879 -- Allowed model migration skip based on feature/vendor
Claude Paroz
2015-02-20
Fixed #24351, #24346 -- Changed the signature of allow_migrate().
Loic Bistuer
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2015-01-10
Fixed #22583 -- Allowed RunPython and RunSQL to provide hints to the db router.
Loic Bistuer
2014-11-22
Revert "Fixed #23892 -- Made deconstructible classes forwards compatible"
Carl Meyer
2014-11-22
Fixed #23892 -- Made deconstructible classes forwards compatible
Carl Meyer
2014-11-20
Fixed #23844 -- Used topological sort for migration operation dependency reso...
Patryk Zawadzki
2014-11-17
Reordered condition to avoid calling allow_migrate() if unneeded.
twidi
2014-08-12
Fixed #23275: Unmanaged models kept by autodetector, ignored by ops
Andrew Godwin
2014-06-17
Fixed #22853: Swapped models are now ignored for migration operations.
Andrew Godwin
2014-05-07
Fixed #22496: Data migrations get transactions again!
Andrew Godwin
2014-05-06
Added a bunch of missing unicode_literals
Claude Paroz
2014-01-20
Fixed #21323 -- Improved readability of serialized Operation.
Loic Bistuer
2013-11-06
flake8 fixes
Alex Gaynor
2013-11-06
Massive migration optimiser improvements + RenameModel opn
Andrew Godwin
2013-10-16
Improve migration optimizer to be able to optimize through other ops
Andrew Godwin
2013-10-02
Initial version of MigrationOptimizer and tests
Andrew Godwin
2013-09-25
Add RunPython migration operation and tests
Andrew Godwin
2013-09-10
Fixed #20841 -- Added messages to NotImplementedErrors
Gregor MacGregor
2013-06-19
Makemigration command now works
Andrew Godwin
2013-06-07
A bit of an autodetector and a bit of a writer
Andrew Godwin
2013-05-29
Start adding operations that work and tests for them
Andrew Godwin
2013-05-10
Make a start on operations and state (not sure if final layout)
Andrew Godwin