This commit is contained in:
Robin COuret
2026-03-05 17:30:39 +01:00
parent 339270aefd
commit 02bc680982
30 changed files with 175 additions and 12 deletions

View File

@@ -0,0 +1,6 @@
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