summaryrefslogtreecommitdiff
path: root/django/db/migrations/operations/__init__.py
AgeCommit message (Collapse)Author
2024-11-28Fixed #35038 -- Created AlterConstraint operation.Salvo Polizzi
2022-12-28Fixed #18468 -- Added support for comments on columns and tables.kimsoungryoul
Thanks Jared Chung, Tom Carrick, David Smith, Nick Pope, and Mariusz Felisiak for reviews. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> Co-authored-by: Nick Pope <nick@nickpope.me.uk>
2022-05-12Refs #27064 -- Added RenameIndex migration operation.David Wobrock
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2018-07-10Fixed #11964 -- Added support for database check constraints.Ian Foote
2016-06-27Fixed #26709 -- Added class-based indexes.Akshesh
Added the AddIndex and RemoveIndex operations to use them in migrations. Thanks markush, mjtamlyn, timgraham, and charettes for review and advice.
2015-06-27Sorted imports in __init__.py files.Tim Graham
2014-12-15Fixed #23822 -- Added support for serializing model managers in migrationMarkus Holtermann
Thanks to Shai Berger, Loïc Bistuer, Simon Charette, Andrew Godwin, Tim Graham, Carl Meyer, and others for their review and input.
2014-06-15Fixed #22470: Full migration support for order_with_respect_toAndrew Godwin
2014-06-15Persist non-schema-relevant Meta changes in migrationsAndrew Godwin
2013-11-06Massive migration optimiser improvements + RenameModel opnAndrew Godwin
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-09-25Add RunPython migration operation and testsAndrew Godwin
2013-09-07RunSQL migration operation and alpha SeparateDatabaseAndState op'n.Andrew Godwin
2013-07-02Add AlterIndexTogether operationAndrew Godwin
2013-07-02Add unique_together altering operationAndrew Godwin
2013-06-20Add AlterField and RenameField operationsAndrew Godwin
2013-06-20Add operation that renames tablesAndrew Godwin
2013-05-29Start adding operations that work and tests for themAndrew Godwin
2013-05-10Make a start on operations and state (not sure if final layout)Andrew Godwin