rebuild project with rsbuild

This commit is contained in:
2024-03-27 17:41:49 +03:00
parent be07d304ee
commit f92171ff84
37 changed files with 1368 additions and 15863 deletions

View File

@ -9,5 +9,6 @@ class User(Base):
id = Column(Integer, primary_key=True)
email = Column(String, unique=True, index=True)
username = Column(String(length=24), unique=True, index=True)
hashed_password = Column(String)
is_active = Column(Boolean, default=True)