(self, app_label: str)
| 28 | raise RuntimeError("MigrationLoader.build_graph is async; call it explicitly.") |
| 29 | |
| 30 | def migrations_module(self, app_label: str) -> str | None: |
| 31 | return self.apps_config.get(app_label, {}).get("migrations") |
| 32 | |
| 33 | def load_disk(self) -> None: |
| 34 | self.disk_migrations = {} |