Skip to main content

emit_post_migrate_signal

Emit the post_migrate signal for every application.

def emit_post_migrate_signal(
verbosity: int,
interactive: bool,
db: str,
**kwargs: dict
) - > null

Emit the post_migrate signal for every application.

Parameters

NameTypeDescription
verbosityintThe level of detail for output messages; values of 2 or higher trigger status logging to stdout.
interactiveboolA flag indicating whether the signal handlers are allowed to prompt the user for input.
dbstrThe database alias identifying which connection the migration is running on.
**kwargsdictArbitrary keyword arguments passed directly to the post_migrate signal receivers, such as 'stdout'.

Returns

TypeDescription
nullThis function does not return a value.