Update models.py
Browse files
models.py
CHANGED
|
@@ -10,6 +10,8 @@ class User(Base):
|
|
| 10 |
email = Column(String, unique=True, index=True)
|
| 11 |
hashed_password = Column(String)
|
| 12 |
is_verified = Column(Boolean, default=False)
|
|
|
|
|
|
|
| 13 |
|
| 14 |
# Define other user fields as needed
|
| 15 |
|
|
|
|
| 10 |
email = Column(String, unique=True, index=True)
|
| 11 |
hashed_password = Column(String)
|
| 12 |
is_verified = Column(Boolean, default=False)
|
| 13 |
+
credits = Column(Integer, default=10000)
|
| 14 |
+
selected_tts_models = Column(ARRAY(String), default=['default.onnx']) # Set the default value to 'default.onnx'
|
| 15 |
|
| 16 |
# Define other user fields as needed
|
| 17 |
|