A router that doesn't allow migrating.
| 15 | |
| 16 | |
| 17 | class MigrateNothingRouter: |
| 18 | """ |
| 19 | A router that doesn't allow migrating. |
| 20 | """ |
| 21 | |
| 22 | def allow_migrate(self, db, app_label, **hints): |
| 23 | return False |
| 24 | |
| 25 | |
| 26 | class MigrateEverythingRouter: |
no outgoing calls