0b85fad e92d5c0
1
2
3
4
5
6
7
from sqlmodel import Field, SQLModel class UserCount(SQLModel, table=True): name: str = Field(primary_key=True) count: int