Class Migration
The base class for all migrations.
Declaration
class Migration
source linkDocumentation
Migration files will import this from django.db.migrations.Migration
and subclass it as a class called Migration. It will have one or more
of the following attributes:
- operations: A list of Operation instances, probably from django.db.migrations.operations
- dependencies: A list of tuples of (app_path, migration_name)
- run_before: A list of tuples of (app_path, migration_name)
- replaces: A list of migration_names
Note that all migrations come out of migrations and into the Loader or
Graph as instances, having been initialized with their app label and name.
Methods
▶ def apply(self, project_state, schema_editor, collect_sql=False) Take a project_state representing all migrations prior to this one and a schema_editor for a live database and apply the migration in a forwards order.
Return the resulting project state for efficient reuse by following
Migrations.
▷ def mutate_state(self, project_state, preserve=True) Take a ProjectState and return a new one with the migration's operations applied to it. Preserve the original object state by default and return a mutated state from a copy.
▷ def suggest_name(self) Suggest a name for the operations this migration might represent. Names are not guaranteed to be unique, but put some effort into the fallback name to avoid VCS conflicts if possible.
▶ def unapply(self, project_state, schema_editor, collect_sql=False) Take a project_state representing all migrations prior to this one and a schema_editor for a live database and apply the migration in a reverse order.
The backwards migration process consists of two phases:
1. The intermediate states from right before the first until right
after the last operation inside this migration are preserved.
2. The operations are applied in reverse order using the states
recorded in step 1.
Subclasses
Reexports