from sqlmodel import Field, SQLModel, Relationship class User(SQLModel, table=True): id: int | None = Field(default=None, primary_key=True) username: str hashed_password: str #is_active: bool