(self, table, using="default")
| 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: |
| 43 | self.assertIn(table, connections[using].introspection.table_names(cursor)) |
| 44 | |
| 45 | def assertTableNotExists(self, table, using="default"): |
| 46 | with connections[using].cursor() as cursor: |
no test coverage detected