(
self,
connection,
load=True,
ignore_no_migrations=False,
replace_migrations=True,
)
| 44 | """ |
| 45 | |
| 46 | def __init__( |
| 47 | self, |
| 48 | connection, |
| 49 | load=True, |
| 50 | ignore_no_migrations=False, |
| 51 | replace_migrations=True, |
| 52 | ): |
| 53 | self.connection = connection |
| 54 | self.disk_migrations = None |
| 55 | self.applied_migrations = None |
| 56 | self.ignore_no_migrations = ignore_no_migrations |
| 57 | self.replace_migrations = replace_migrations |
| 58 | if load: |
| 59 | self.build_graph() |
| 60 | |
| 61 | @classmethod |
| 62 | def migrations_module(cls, app_label): |
nothing calls this directly
no test coverage detected