Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork789
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 toPydantic.
- I already checked if it is not related to SQLModel but toSQLAlchemy.
Commit to Help
- I commit to help with one of those options 👆
Example Code
fromsqlmodelimportField,Session,SQLModel,create_engine,select,ARRAY,Integer,String,FLOATfromgeoalchemy2importGeometryfromtypingimportOptionalfromdatetimeimportdatetimefromurllib.parseimportquote_plusfromtypingimportList,Optional,Setfromsqlalchemy.sql.schemaimportColumnclassSite_Metrics(SQLModel,table=True):site_metric_id:Optional[int]=Field(default=None,primary_key=True)site_id:intmetric_id:intcreated_at:datetimeupdated_at:datetimen_value:floata_value:Optional[List]=Field(default_factory=list,sa_column=Column(ARRAY(Geometry('POINT'))))deleted_at:datetime
Description
I havepoint[] type in SQLModel but by far without luck. I tried many things but this variation is the closest I have got. Is there any other way to do this? Thanks
Operating System
macOS
Operating System Details
No response
SQLModel Version
0.0.8
Python Version
3.8.0
Additional Context
No response