(self, table, using="default")
| 35 | recorder.migration_qs.filter(app="migrations").delete() |
| 36 | |
| 37 | def get_table_description(self, table, using="default"): |
| 38 | with connections[using].cursor() as cursor: |
| 39 | return connections[using].introspection.get_table_description(cursor, table) |
| 40 | |
| 41 | def assertTableExists(self, table, using="default"): |
| 42 | with connections[using].cursor() as cursor: |
no test coverage detected