Open
Description
First Check
- I added a very descriptive title to this issue.
- I used the GitHub search to find a similar issue and didn't find it.
- I searched the SQLModel documentation, with the integrated search.
- I already searched in Google "How to X in SQLModel" and didn't find any information.
- I already read and followed all the tutorial in the docs and didn't find an answer.
- I already checked if it is not related to SQLModel but to Pydantic.
- I already checked if it is not related to SQLModel but to SQLAlchemy.
Commit to Help
- I commit to help with one of those options 👆
Example Code
from pydantic import EmailStr
from sqlmodel import AutoString, Column, Field, SQLModel
class User(SQLModel, table=True):
"""User database model."""
__tablename__ = "users"
id: int | None = Field(default=None, primary_key=True)
email: str
email2: str = Field(sa_column=Column("email2", AutoString, nullable=False))
Description
When I use the str
type alembic runs just fine. But when I change the type to pydantic's EmailStr
type alembic errors somehow.
As the type annotation, coming from pydantic, in a SQLModel causes an error with alembic I guess that there is somehow a communication / translation error from SQLModel to alembic.
I looked into the code of sqlmodel and here are my findings:
- The function get_sqlachemy_type should return the correct type for
EmailStr
as it subclassesstr
- When looking at get_column_from_field all the options setting is skipped when I set
sa_column
. So foremail2
I set a column with a type, but the type annotation still somehow causes the error.
Maybe it is somehow related to #212.
Reproduction steps
- Setup alembic like described here
- Put code snippet in a python file and import it in alembic's migriations/env.py file
- Run
alembic revision --autogenerate -m "init"
- See no error and successfully created migration script in migrations/versions directory
- Change any or both
email: str
toemail: EmailStr
/email2: str = ...
toemail2: EmailStr = ...
- Run
alembic revision --autogenerate -m "init"
again - See alembic exit with exit code 1 and no stack trace
Operating System
Windows
Operating System Details
No response
SQLModel Version
0.0.6
Python Version
3.10.1
Additional Context
No response