Represent a DROP SEQUENCE statement.
| 1081 | |
| 1082 | |
| 1083 | class DropSequence(_DropBase["Sequence"]): |
| 1084 | """Represent a DROP SEQUENCE statement.""" |
| 1085 | |
| 1086 | __visit_name__ = "drop_sequence" |
| 1087 | |
| 1088 | |
| 1089 | class CreateIndex(_CreateBase["Index"]): |
no outgoing calls