Wauplin's picture
Wauplin HF Staff
much much better
e92d5c0 verified
raw
history blame contribute delete
133 Bytes
from sqlmodel import Field, SQLModel
class UserCount(SQLModel, table=True):
name: str = Field(primary_key=True)
count: int