Spaces:
Running
Running
Upload models.py
Browse files- 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 |
|