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
| Name | Type | Description |
|---|---|---|
| verbosity | int | The level of detail for output messages; values of 2 or higher trigger status logging to stdout. |
| interactive | bool | A flag indicating whether the signal handlers are allowed to prompt the user for input. |
| db | str | The database alias identifying which connection the migration is running on. |
| **kwargs | dict | Arbitrary keyword arguments passed directly to the post_migrate signal receivers, such as 'stdout'. |
Returns
| Type | Description |
|---|---|
null | This function does not return a value. |