(self, index, create_ok=False)
| 1058 | CreateSequence(sequence)._invoke_with(self.connection) |
| 1059 | |
| 1060 | def visit_index(self, index, create_ok=False): |
| 1061 | if not create_ok and not self._can_create_index(index): |
| 1062 | return |
| 1063 | with self.with_ddl_events(index): |
| 1064 | CreateIndex(index)._invoke_with(self.connection) |
| 1065 | |
| 1066 | |
| 1067 | class SchemaDropper(InvokeDropDDLBase): |
nothing calls this directly
no test coverage detected