(self, sequence, drop_ok=False)
| 1230 | DropConstraint(constraint)._invoke_with(self.connection) |
| 1231 | |
| 1232 | def visit_sequence(self, sequence, drop_ok=False): |
| 1233 | if not drop_ok and not self._can_drop_sequence(sequence): |
| 1234 | return |
| 1235 | with self.with_ddl_events(sequence): |
| 1236 | DropSequence(sequence)._invoke_with(self.connection) |
| 1237 | |
| 1238 | |
| 1239 | def sort_tables( |