Represent a DROP SEQUENCE statement.
| 709 | |
| 710 | |
| 711 | class DropSequence(_DropBase["Sequence"]): |
| 712 | """Represent a DROP SEQUENCE statement.""" |
| 713 | |
| 714 | __visit_name__ = "drop_sequence" |
| 715 | |
| 716 | |
| 717 | class CreateIndex(_CreateBase["Index"]): |
no outgoing calls