07314be
1
2
3
4
5
6
7
8
from sqlmodel import SQLModel, Field class User(SQLModel, table=True): id: int = Field(default=None, primary_key=True) username: str full_name: str hashed_password: str