feat: Update User model with 1 new fields
This commit is contained in:
parent
d14fce0153
commit
04f2a685e5
@ -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