(self, constraint)
| 1696 | self.traverse_single(column.default) |
| 1697 | |
| 1698 | def visit_foreign_key_constraint(self, constraint): |
| 1699 | if not self.dialect.supports_alter: |
| 1700 | return |
| 1701 | with self.with_ddl_events(constraint): |
| 1702 | DropConstraint(constraint)._invoke_with(self.connection) |
| 1703 | |
| 1704 | def visit_sequence(self, sequence, drop_ok=False): |
| 1705 | if not drop_ok and not self._can_drop_sequence(sequence): |
nothing calls this directly
no test coverage detected