(self)
| 5744 | bind._run_ddl_visitor(ddl.SchemaDropper, self, checkfirst=checkfirst) |
| 5745 | |
| 5746 | def __repr__(self) -> str: |
| 5747 | exprs: _typing_Sequence[Any] # noqa: F842 |
| 5748 | |
| 5749 | return "Index(%s)" % ( |
| 5750 | ", ".join( |
| 5751 | [repr(self.name)] |
| 5752 | + [repr(e) for e in self.expressions] |
| 5753 | + (self.unique and ["unique=True"] or []) |
| 5754 | ) |
| 5755 | ) |
| 5756 | |
| 5757 | |
| 5758 | _NamingSchemaCallable = Union[ |