(self, index, create_ok=False)
| 1514 | CreateSequence(sequence)._invoke_with(self.connection) |
| 1515 | |
| 1516 | def visit_index(self, index, create_ok=False): |
| 1517 | if not create_ok and not self._can_create_index(index): |
| 1518 | return |
| 1519 | with self.with_ddl_events(index): |
| 1520 | CreateIndex(index)._invoke_with(self.connection) |
| 1521 | |
| 1522 | |
| 1523 | class SchemaDropper(InvokeDropDDLBase): |
nothing calls this directly
no test coverage detected