Open azataiot opened 1 year ago
I know SQLModel is SQLAlchemy under the hood but this feels strange, cause i want to face SQLModel ONLY.
Generally you can't do this kind of things with SQLModel without using SA api directly, so I'd just drop that want.
Coming from Tortoise ORM moving to SQLModel it would be great to have if the timezone would be saved without having to use SQLAlchemy directly. The project is new so I hope updates could be made soon.
New release has
Add support for passing a custom SQLAlchemy type to Field() with sa_type. PR #505 by @maru0123-2004.
so maybe this could be extended somehow to allow arguments for the sa Column type too.
That's how I sort this out now:
from typing import Annotated
from datetime import datetime, timezone
import pytest
from pydantic import types as pydantic_types, ValidationError
from sqlmodel import Field, SQLModel, create_engine, Session, DateTime, Column
class DummySchema(SQLModel):
timestamp: pydantic_types.AwareDatetime = Field(sa_type=DateTime(timezone=True))
class DummyModel(DummySchema, table=True):
id: int | None = Field(default=None, primary_key=True)
Indeed @antont , I believe adding sa_type_kwargs
would be really helpful.
For such a widespread issue (eg: TZ Management): handle pydantic_types
casting seems reasonnable.
That will throw an error:
class DummySchema(SQLModel):
timestamp: pydantic_types.AwareDatetime = Field()
while that works:
class DummySchema(SQLModel):
timestamp: Annotated[datetime, pydantic_types.AwareDatetime] = Field()
Just considering all the whatever_at
kind of fields you'd get that seems like a reasonable thing to have.
In the end, most of Pydantic Data Types are around date/datetime, and we could have:
PastDate = Annotated[date, pydantic_types.PastDate]
FutureDate = Annotated[date, pydantic_types.FutureDate]
PastDatetime = Annotated[datetime, pydantic_types.PastDatetime]
FutureDatetime = Annotated[datetime, pydantic_types.FutureDatetime]
AwareDatetime = Annotated[datetime, pydantic_types.AwareDatetime]
NaiveDatetime = Annotated[datetime, pydantic_types.NaiveDatetime]
as well as an updated get_sqlalchemy_type
, JSON/JSONValue would be left to tackle but YAGNI I guess.
Taking a step back, I believe the this kind of challenges quite common, and making type-mapping used in get_sqlalchemy_type
part of the public API would help a LOT.
In the end one could: get_sqlalchemy_type.register(annotation_type: Any,sa_type:Union[Type[TypeEngine],TypeEngine])
and let SQLModel map that transparently.
Obviously the Mapping should be Immutable, there are couple of guard rails to be put here and there but nothing impossible.
That can make SQLModel
feel a bit like "magic" if mapping are added randomly on a code base yet that'd be really helpful.
I can dig into contributing to this, yet I'd like to know if there any kind of interest for such a contrib'?
First Check
Commit to Help
Example Code
Description
I write my
created_at
andupdated_at
fields like this, however, this did not work, because of the time awareness,After checking Github, i found this solution:
It is written with mixing SQLModel stuff and the SALAlchemy, I know SQLModel is SQLAlchemy under the hood but this feels strange, cause i want to face SQLModel ONLY.
Is there any better way of handling this?
Let's say when SQLModel create tables, it will check the payding field
created_at
, if it is timezone aware datetime then it will set it assa_column=sa.Column(sa.DateTime(timezone=True)
so that we do not need to mix them both,Operating System
macOS
Operating System Details
No response
SQLModel Version
0.0.8
Python Version
3.10.2
Additional Context
No response