from sqlmodel import Field, SQLModel class UserCount(SQLModel, table=True): name: str = Field(primary_key=True) count: int