(self, sequence, drop_ok=False)
| 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): |
| 1706 | return |
| 1707 | with self.with_ddl_events(sequence): |
| 1708 | DropSequence(sequence)._invoke_with(self.connection) |
| 1709 | |
| 1710 | |
| 1711 | def sort_tables( |