package documentation

Undocumented

Module base No module docstring; 1/1 class documented
Module fields Undocumented
Module models Undocumented
Module special Undocumented

From __init__.py:

Class ​Add​Constraint Undocumented
Class ​Add​Field Add a field to a model.
Class ​Add​Index Add an index on a model.
Class ​Alter​Field Alter a field's database column (e.g. null, max_length) to the provided new field.
Class ​Alter​Index​Together Change the value of index_together to the target one. Input value of index_together must be a set of tuples.
Class ​Alter​Model​Managers Alter the model's managers.
Class ​Alter​Model​Options 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.
Class ​Alter​Model​Table Rename a model's table.
Class ​Alter​Order​With​Respect​To Represent a change with the order_with_respect_to option.
Class ​Alter​Unique​Together Change the value of unique_together to the target one. Input value of unique_together must be a set of tuples.
Class ​Create​Model Create a model's table.
Class ​Delete​Model Drop a model's table.
Class ​Remove​Constraint Undocumented
Class ​Remove​Field Remove a field from a model.
Class ​Remove​Index Remove an index from a model.
Class ​Rename​Field Rename a field on the model. Might affect db_column too.
Class ​Rename​Model Rename a model.
Class ​Run​Python Run Python code in a context suitable for doing versioned ORM operations.
Class ​Run​SQL Run some raw SQL. A reverse SQL statement may be provided.
Class ​Separate​Database​And​State No summary