
- Add SQLite database configuration - Create Todo model, schemas, and CRUD operations - Implement Todo API endpoints - Add Alembic migration for todo table - Set up database initialization in main.py - Update README with project details and instructions - Add pyproject.toml with Ruff configuration
4 lines
111 B
Python
4 lines
111 B
Python
from sqlalchemy.ext.declarative import declarative_base
|
|
|
|
# Define the SQLAlchemy base
|
|
Base = declarative_base() |