admin管理员组文章数量:1415645
On sqlmodel 0.0.22, the following code will crash with ValueError: <class 'list'> has no matching SQLAlchemy type
from sqlalchemy import ARRAY
from sqlmodel import Field, SQLModel, String
class Foo(SQLModel, table=True):
id: str = Field(primary_key=True)
bar: list[str] = Field(sa_type=ARRAY(String))
class Bar(Foo):
pass
Removing table=True
gets rid of the error.
Does anyone know why and is there a workaround?
本文标签:
版权声明:本文标题:python - Inheriting from SQLModel with table=True raises Value error if parent has a non-trivial field type - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745241900a2649376.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论