Return whether the current process is running Django migration orchestration.
Source code in log_panel/runtime.py
| def is_migration_command() -> bool:
"""Return whether the current process is running Django migration orchestration."""
return bool(argv_command_names() & MIGRATION_COMMANDS)
|