Create a new :class:`.CreateSchema` construct.
(
self,
name: str,
if_not_exists: bool = False,
)
| 506 | stringify_dialect = "default" |
| 507 | |
| 508 | def __init__( |
| 509 | self, |
| 510 | name: str, |
| 511 | if_not_exists: bool = False, |
| 512 | ) -> None: |
| 513 | """Create a new :class:`.CreateSchema` construct.""" |
| 514 | |
| 515 | super().__init__(element=name, if_not_exists=if_not_exists) |
| 516 | |
| 517 | |
| 518 | class DropSchema(_DropBase[str]): |