(self, element: _SI, if_not_exists: bool = False)
| 472 | |
| 473 | class _CreateBase(_CreateDropBase[_SI]): |
| 474 | def __init__(self, element: _SI, if_not_exists: bool = False) -> None: |
| 475 | super().__init__(element) |
| 476 | self.if_not_exists = if_not_exists |
| 477 | |
| 478 | |
| 479 | class TableCreateDDL(_CreateBase["Table"]): |