Skip to content

🐛 Fix TypeError for fields annotated with Literal #1439

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
3 changes: 3 additions & 0 deletions sqlmodel/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,9 @@ def get_sqlalchemy_type(field: Any) -> Any:
type_ = get_sa_type_from_field(field)
metadata = get_field_metadata(field)

# Checks for `Literal` type annotation
if type_ is Literal:
return AutoString
# Check enums first as an enum can also be a str, needed by Pydantic/FastAPI
if issubclass(type_, Enum):
return sa_Enum(type_)
Expand Down
Loading