Files
manolia-alpha/server/src/app/models/user.py
Robin COuret a243149bf1 structure auth
2026-03-05 22:38:21 +01:00

7 lines
208 B
Python

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