
- Add ClassVar type annotation for DB_DIR in config.py - Add Base import in base.py for proper Alembic migrations - Update README with detailed SQLite configuration information 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
3 lines
111 B
Python
3 lines
111 B
Python
# Import all models here for Alembic to detect
|
|
from app.db.session import Base
|
|
from app.models.todo import Todo |