# backend/src/models/user.py from sqlalchemy import Column, Integer, String, DateTime, Boolean, Text from sqlalchemy.sql import func from backend.src.db.base import Base class User(Base): __tablename__ = "users" id = Column(Integer, primary_key=True, index=True) email = Column(String, unique=True, index=True, nullable=False) hashed_password = Column(String, nullable=False) full_name = Column(String, nullable=True) is_active = Column(Boolean, default=True) # --- SaaS SECURITY & IDENTIFICATION (New 🔐) --- # Har user ki apni unique API Key hogi api_key = Column(String, unique=True, index=True, nullable=True) # Konsi website par bot chal sakta hai (e.g., "usamatechodyssey.github.io") # Default "*" ka matlab hai abhi har jagah chalega, baad mein lock kar sakte hain allowed_domains = Column(String, default="*") # --- Bot Customization --- bot_name = Column(String, default="Support Agent") bot_instruction = Column(Text, default="You are a helpful customer support agent. Only answer questions related to the provided data.") created_at = Column(DateTime(timezone=True), server_default=func.now()) updated_at = Column(DateTime(timezone=True), onupdate=func.now())