structure auth

This commit is contained in:
Robin COuret
2026-03-05 22:38:21 +01:00
parent 01f9e9f05e
commit a243149bf1
27 changed files with 68 additions and 52 deletions

View File

@@ -3,4 +3,5 @@ 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
hashed_password: str
#is_active: bool