| 158 | |
| 159 | |
| 160 | class _NoopRecorder(MigrationRecorder): |
| 161 | def __init__(self) -> None: |
| 162 | super().__init__(connection=None) |
| 163 | |
| 164 | async def applied_migrations(self) -> list[MigrationKey]: |
| 165 | return [] |
| 166 | |
| 167 | async def ensure_schema(self, _schema_editor) -> None: |
| 168 | return None |
| 169 | |
| 170 | |
| 171 | def _load_config(ctx: CLIContext) -> TortoiseConfig: |
no outgoing calls
no test coverage detected
searching dependent graphs…