
Added complete backend infrastructure with: - Authentication system with OAuth (Google, GitHub, Apple) - Stripe payment processing with subscription management - Testimonials management API - Usage statistics tracking - Email communication services - Health monitoring endpoints - Database migrations with Alembic - Comprehensive API documentation All APIs are production-ready with proper error handling, security measures, and environment variable configuration. Co-Authored-By: Claude <noreply@anthropic.com>
14 lines
561 B
Python
14 lines
561 B
Python
from sqlalchemy import Column, Integer, String, DateTime, BigInteger
|
|
from sqlalchemy.sql import func
|
|
from app.db.base import Base
|
|
|
|
class UsageStat(Base):
|
|
__tablename__ = "usage_stats"
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|
|
metric_name = Column(String, nullable=False, index=True)
|
|
metric_value = Column(BigInteger, nullable=False)
|
|
description = Column(String, nullable=True)
|
|
|
|
created_at = Column(DateTime(timezone=True), server_default=func.now())
|
|
updated_at = Column(DateTime(timezone=True), onupdate=func.now()) |