feat: Update User model with 1 new fields

This commit is contained in:
Backend IM Bot 2025-04-09 13:19:17 +00:00
parent ea1d493d47
commit 67d3218454

View File

@ -8,4 +8,5 @@ class User(Base):
username = Column(String, unique=True, index=True)
email = Column(String, unique=True, index=True)
hashed_password = Column(String)
routes = Column(String)
disabled = Column(Boolean, default=False)