add user? new page? new web

This commit is contained in:
2026-03-23 21:28:10 +05:00
parent 04bfff3d3f
commit 9cd6d83428
26 changed files with 917 additions and 65 deletions

View File

@@ -9,6 +9,8 @@ class User(Base):
id = Column(UUID(as_uuid=True), primary_key=True, default=uuid.uuid4)
first_name = Column(String(150), nullable=False)
last_name = Column(String(150), nullable=False)
username = Column(String(150), nullable=False, unique=True)
hashed_password = Column(String(256), nullable=False)
__all__ = ["Base", "User"]