Class RenameField
Rename a field on the model. Might affect db_column too.
Declaration
source linkDocumentation
Methods
▶ def __init__(self, model_name, old_name, new_name) override ▶ def database_backwards(self, app_label, schema_editor, from_state, to_state) overrideinherited doc Perform the mutation on the database schema in the reverse direction - e.g. if this were CreateModel, it would in fact drop the model's table.
▶ def database_forwards(self, app_label, schema_editor, from_state, to_state) overrideinherited doc Perform the mutation on the database schema in the normal (forwards) direction.
▶ def deconstruct(self) overrideinherited doc Return a 3-tuple of class import path (or just name if it lives under django.db.migrations), positional arguments, and keyword arguments.
▶ def describe(self) overrideinherited doc Output a brief summary of what the action does.
▶ def migration_name_fragment(self) override @propertyinherited doc A filename part suitable for automatically naming a migration containing this operation, or None if not applicable.
@cached_property
def new_name_lower(self)
@cached_property
def old_name_lower(self)
▶ def reduce(self, operation, app_label) overrideinherited doc Return either a list of operations the actual operation should be replaced with or a boolean that indicates whether or not the specified operation can be optimized across.
▶ def references_field(self, model_name, name, app_label) overrideinherited doc Return True if there is a chance this operation references the given field name, with an app label for accuracy.
▶ def state_forwards(self, app_label, state) overrideinherited doc Take the state from the previous migration, and mutate it so that it matches what this migration would perform.