(self, col: Column[Any])
| 5432 | self._set_parent_with_dispatch(self.table) |
| 5433 | |
| 5434 | def _replace(self, col: Column[Any]) -> None: |
| 5435 | PrimaryKeyConstraint._autoincrement_column._reset(self) # type: ignore |
| 5436 | self._columns.replace(col) |
| 5437 | |
| 5438 | self.dispatch._sa_event_column_added_to_pk_constraint(self, col) |
| 5439 | |
| 5440 | @property |
| 5441 | def columns_autoinc_first(self) -> List[Column[Any]]: |