(self, table, columns)
| 116 | ) |
| 117 | |
| 118 | def assertIndexNotExists(self, table, columns): |
| 119 | return self.assertIndexExists(table, columns, False) |
| 120 | |
| 121 | def assertIndexNameExists(self, table, index, using="default"): |
| 122 | with connections[using].cursor() as cursor: |
no test coverage detected