
- Set up FastAPI application with proper project structure - Configure SQLite database with SQLAlchemy ORM - Implement user model with CRUD operations - Add Alembic for database migrations - Create comprehensive API endpoints for user management - Configure CORS middleware for cross-origin requests - Add health check endpoint and service information - Set up Ruff for code linting and formatting - Update README with complete documentation Co-Authored-By: BackendIM <noreply@backendim.com>
17 lines
592 B
Python
17 lines
592 B
Python
from sqlalchemy import Boolean, Column, DateTime, Integer, String
|
|
from sqlalchemy.sql import func
|
|
|
|
from app.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)
|
|
full_name = Column(String, nullable=False)
|
|
hashed_password = Column(String, nullable=False)
|
|
is_active = Column(Boolean, default=True)
|
|
created_at = Column(DateTime(timezone=True), server_default=func.now())
|
|
updated_at = Column(DateTime(timezone=True), onupdate=func.now())
|