-
-
Add an index on a model.
-
Change the value of index_together to the target one. Input value of index_together must be a set of tuples.
-
Alter the model's managers.
-
Set new model options that don't directly affect the database schema (like verbose_name, permissions, ordering). Python code in migrations may still need them.
-
Rename a model's table.
-
Represent a change with the order_with_respect_to option.
-
-
Change the value of unique_together to the target one. Input value of unique_together must be a set of tuples.
-
Create a model's table.
-
Drop a model's table.
-
-
-
-
-
Remove an index from a model.
-
Rename a model.