Fixed database initialization

This commit is contained in:
algizn97
2025-11-12 22:18:38 +05:00
parent d7b558664b
commit 0bc74ed188
3 changed files with 27 additions and 28 deletions

View File

@@ -154,8 +154,8 @@ class UserDeals(Base):
order_quantity = Column(Float, nullable=True)
martingale_factor = Column(Float, nullable=True)
max_bets_in_series = Column(Integer, nullable=True)
take_profit_percent = Column(Integer, nullable=True)
stop_loss_percent = Column(Integer, nullable=True)
take_profit_percent = Column(Float, nullable=True)
stop_loss_percent = Column(Float, nullable=True)
trigger_price = Column(Float, nullable=True)
current_series = Column(Integer, nullable=True)
commission_fee = Column(String, nullable=True)