feat: Update User model with 1 new fields

This commit is contained in:
Backend IM Bot 2025-04-11 11:23:30 +00:00
parent d14fce0153
commit 04f2a685e5

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)
phone_number = Column(String)
disabled = Column(Boolean, default=False)