Vishwanath77 commited on
Commit
0a7afc4
·
verified ·
1 Parent(s): d92933f

Upload models.py

Browse files
Files changed (1) hide show
  1. src/apps/models.py +1 -0
src/apps/models.py CHANGED
@@ -11,6 +11,7 @@ class User(Base):
11
  email = Column(String, unique=True, index=True)
12
  hashed_password = Column(String)
13
  role = Column(String)
 
14
  reset_token = Column(String, nullable=True)
15
  question_count = Column(Integer, default=0)
16
 
 
11
  email = Column(String, unique=True, index=True)
12
  hashed_password = Column(String)
13
  role = Column(String)
14
+ mobile_number = Column(String, nullable=True)
15
  reset_token = Column(String, nullable=True)
16
  question_count = Column(Integer, default=0)
17