Method
__init__
(
self,
*columns: _DDLColumnArgument,
name: Optional[str] = None,
deferrable: Optional[bool] = None,
initially: Optional[str] = None,
info: Optional[_InfoType] = None,
_implicit_generated: bool = False,
**dialect_kw: Any,
)
Source from the content-addressed store, hash-verified
| 5343 | __visit_name__ = "primary_key_constraint" |
| 5344 | |
| 5345 | def __init__( |
| 5346 | self, |
| 5347 | *columns: _DDLColumnArgument, |
| 5348 | name: Optional[str] = None, |
| 5349 | deferrable: Optional[bool] = None, |
| 5350 | initially: Optional[str] = None, |
| 5351 | info: Optional[_InfoType] = None, |
| 5352 | _implicit_generated: bool = False, |
| 5353 | **dialect_kw: Any, |
| 5354 | ) -> None: |
| 5355 | self._implicit_generated = _implicit_generated |
| 5356 | super().__init__( |
| 5357 | *columns, |
| 5358 | name=name, |
| 5359 | deferrable=deferrable, |
| 5360 | initially=initially, |
| 5361 | info=info, |
| 5362 | **dialect_kw, |
| 5363 | ) |
| 5364 | |
| 5365 | def _set_parent(self, parent: SchemaEventTarget, **kw: Any) -> None: |
| 5366 | table = parent |
Callers
nothing calls this directly
Tested by
no test coverage detected