summaryrefslogtreecommitdiff
path: root/django/db/migrations/operations/models.py
AgeCommit message (Expand)Author
2023-02-14[4.2.x] Fixed #34250 -- Fixed renaming model with m2m relation to a model wit...DevilsAutumn
2023-02-01[4.2.x] Refs #33476 -- Applied Black's 2023 stable style.David Smith
2022-12-28Fixed #18468 -- Added support for comments on columns and tables.kimsoungryoul
2022-08-26Fixed #33953 -- Reverted "Fixed #33201 -- Made RenameModel operation a noop f...Iuri de Silvio
2022-07-26Refs #27236 -- Reverted AlterIndexTogether deprecation.Mariusz Felisiak
2022-07-12Fixed #27236 -- Deprecated Meta.index_together in favor of Meta.indexes.David Wobrock
2022-05-16Fixed #33710 -- Made RenameIndex operation a noop when the old and new name m...David Wobrock
2022-05-12Refs #27064 -- Added RenameIndex migration operation.David Wobrock
2022-03-11Fixed #33572 -- Implemented CreateModel/AlterModelManagers reduction.Adam Johnson
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2022-01-04Fixed #33402 -- Optimized multiple AlterFooTogether operations.David Wobrock
2021-10-27Fixed #33201 -- Made RenameModel operation a noop for models with db_table.Iuri de Silvio
2021-06-29Refs #29898 -- Moved state_forwards()'s logic from migration operations to Pr...manav014
2021-06-22Refs #29898 -- Moved django.db.migrations.operations.utils to django.db.migra...manav014
2021-04-16Refs #29899 -- Moved resolve_relation() to django.db.migrations.utils.David Wobrock
2021-01-13Fixed #26167 -- Added support for functional indexes.Hannes Ljungberg
2020-12-18Fixed #32262 -- Fixed migration optimization for model creation and Meta opti...Hasan Ramezani
2020-05-28Fixed #31468 -- Allowed specifying migration filename in Operation.Adam Johnson
2020-04-22Fixed #31499 -- Stored ModelState.fields into a dict.Simon Charette
2020-04-10Refs #28305 -- Consolidated field referencing detection in migrations.Simon Charette
2020-04-09Replaced ModelTuple by a model resolving function and bare tuples.Simon Charette
2020-04-09Made Operation.references_model/references_field require app_label.Simon Charette
2020-04-09Refs #22608 -- Made app_label required when optimizing migrations.Simon Charette
2019-08-02Simplified AlterModelTable by making it subclass ModelOptionOperation.Nick Pope
2018-10-29Fixed #29868 -- Retained database constraints on SQLite table rebuilds.Simon Charette
2018-09-28Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev
2018-09-14Fixed #29755 -- Made migrations detect changes to Meta.default_related_name.Simon Charette
2018-07-19Refs #28862 -- Removed the FieldRelatedOptionOperation.reduce() optimization.Simon Charette
2018-07-19Fixed #26906 -- Reduced alter together operations code duplication.Simon Charette
2018-07-19Fixed #27731 -- Implemented CreateModel/AlterFooOperation reduction.Simon Charette
2018-07-19Fixed #28862 -- Disabled optimization of AlterFooTogether and RemoveField.Simon Charette
2018-07-11Removed in_between from Operation.reduce()'s signature.Simon Charette
2018-07-11Introduced ModelTuple to remove migrations boilerplate.Simon Charette
2018-07-11Fixed #26720 -- Prevented invalid CreateModel optimizations of related fields.Simon Charette
2018-07-11Fixed #27768 -- Allowed migration optimization of CreateModel order.Simon Charette
2018-07-10Fixed #11964 -- Added support for database check constraints.Ian Foote
2017-12-30Moved _get_model_tuple() to the base Operation class.Simon Charette
2017-12-28Removed unnecessary trailing commas and spaces in various code.Mariusz Felisiak
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-11-14Fixed #28795 -- Removed 'not in' checks and used dict.setdefault().Дилян Палаузов
2017-06-14Refs #27914 -- Used __qualname__ in model operations' deconstruct().chillaranand
2017-06-01Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne
2017-05-01Fixed #28043 -- Prevented AddIndex and RemoveIndex from mutating model state.Ian Foote
2017-02-28Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Refs #27666 -- Added ProjectState.reload_models().Markus Holtermann
2017-01-17Fixed #27666 -- Delayed rendering of recursivly related models in migration o...Markus Holtermann
2017-01-10Fixed #27717 -- Allowed migration optimization across AlterModelOptions.Ed Morley