Spaces:
Runtime error
Runtime error
File size: 3,888 Bytes
a63a304 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | from app.database.base import engine, Base
from app.models.trading_symbol import TradingSymbol
import app.models
import sqlalchemy as sa
from app.models.email_settings import EmailSettings
from app.models.pending_registration import PendingRegistration
def init_db():
print("Creating / updating database tables...")
Base.metadata.create_all(bind=engine)
print("Tables created (if they didn't exist).")
# ββ SAFE MIGRATIONS ββββββββββββββββββββββββββββββββββββββ
# SQLite ALTER TABLE sirf column add karta hai.
# Har column ke liye: check karo exist karta hai ya nahi,
# agar nahi to add karo β error nahi aayega kabhi.
migrations = [
# (table_name, column_name, column_definition)
("challenges", "profit_target_pct", "FLOAT DEFAULT 10.0"),
("user_challenges", "failure_reason", "TEXT"),
("trades", "take_profit", "FLOAT"),
("trades", "stop_loss", "FLOAT"),
("users", "referred_by_affiliate_id", "INTEGER"), # β AFFILIATE SYSTEM (NEW)
("users", "email", "VARCHAR"), # β EMAIL SYSTEM (NEW)
("users", "drawdown_email_enabled", "BOOLEAN DEFAULT 1"),
("payout_requests", "account_size", "FLOAT DEFAULT 0"), # β PAYOUT BANNER (NEW)
("users", "payout_cycle_start", "DATETIME"), # β MIN TRADING DAYS (NEW)
("users", "payout_days_exempt", "BOOLEAN DEFAULT 0"), # β MIN TRADING DAYS (NEW)
("payout_settings", "min_trading_days", "INTEGER DEFAULT 0"), # β MIN TRADING DAYS (NEW)
("users", "full_name", "VARCHAR"), # β FULL NAME (NEW)
("pending_registrations", "full_name", "VARCHAR"), # β FULL NAME (NEW)
("challenges", "profit_split_pct", "FLOAT DEFAULT 80.0"), # β PROFIT SPLIT (NEW)
("payout_requests", "received_amount", "FLOAT DEFAULT 0.0"), # β PROFIT SPLIT (NEW)
("payout_requests", "split_pct_used", "FLOAT DEFAULT 100.0"), # β PROFIT SPLIT (NEW)
("challenges", "is_hidden", "BOOLEAN DEFAULT 0"), # β HIDDEN PLAN (NEW)
# ββ MULTI-ACCOUNT SUPPORT β NEW βββββββββββββββββββββββββ
("user_challenges", "account_size", "FLOAT"),
("user_challenges", "current_balance", "FLOAT"),
("user_challenges", "max_balance_achieved", "FLOAT"),
("user_challenges", "account_id", "INTEGER"),
("trades", "user_challenge_id", "INTEGER"),
("daily_stats", "user_challenge_id", "INTEGER"),
("pending_orders", "user_challenge_id", "INTEGER"),
("users", "active_account_id", "INTEGER"),
("payout_requests", "user_challenge_id", "INTEGER"),
]
inspector = sa.inspect(engine)
with engine.connect() as conn:
for table, col, col_def in migrations:
try:
existing = [c["name"] for c in inspector.get_columns(table)]
if col not in existing:
conn.execute(sa.text(
f"ALTER TABLE {table} ADD COLUMN {col} {col_def}"
))
conn.commit()
print(f" β
Added column '{col}' to '{table}'")
else:
print(f" β Column '{col}' in '{table}' already exists, skipping.")
except Exception as e:
print(f" β οΈ Migration skipped ({table}.{col}): {e}")
print("\nβ
Database ready!")
if __name__ == "__main__":
init_db() |