| 202 | |
| 203 | @dataclass |
| 204 | class FieldInfoMetadata: |
| 205 | primary_key: bool | UndefinedType = Undefined |
| 206 | nullable: bool | UndefinedType = Undefined |
| 207 | foreign_key: Any = Undefined |
| 208 | ondelete: OnDeleteType | UndefinedType = Undefined |
| 209 | unique: bool | UndefinedType = Undefined |
| 210 | index: bool | UndefinedType = Undefined |
| 211 | sa_type: type[Any] | UndefinedType = Undefined |
| 212 | sa_column: Column[Any] | UndefinedType = Undefined |
| 213 | sa_column_args: Sequence[Any] | UndefinedType = Undefined |
| 214 | sa_column_kwargs: Mapping[str, Any] | UndefinedType = Undefined |
| 215 | |
| 216 | |
| 217 | def _get_sqlmodel_field_metadata(field_info: Any) -> FieldInfoMetadata | None: |
no outgoing calls
no test coverage detected
searching dependent graphs…