feat: Update User model with 1 new fields
This commit is contained in:
parent
6b10bedd9a
commit
6954d0e746
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user