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?

本文标签: