(connection: Connection)
| 67 | |
| 68 | |
| 69 | def do_run_migrations(connection: Connection) -> None: |
| 70 | context.configure( |
| 71 | connection=connection, |
| 72 | target_metadata=target_metadata, |
| 73 | compare_type=True, |
| 74 | compare_server_default=True, |
| 75 | ) |
| 76 | |
| 77 | with context.begin_transaction(): |
| 78 | context.run_migrations() |
| 79 | |
| 80 | |
| 81 | async def run_async_migrations() -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected