
- Setup project structure with FastAPI app - Create SQLAlchemy models for categories, questions, quizzes, and results - Implement API endpoints for all CRUD operations - Set up Alembic migrations for database schema management - Add comprehensive documentation in README.md
13 lines
242 B
Plaintext
13 lines
242 B
Plaintext
Bible Quiz App API - Alembic Migrations
|
|
|
|
This directory contains database migration scripts using Alembic.
|
|
|
|
To apply migrations:
|
|
```
|
|
alembic upgrade head
|
|
```
|
|
|
|
To create a new migration:
|
|
```
|
|
alembic revision --autogenerate -m "description"
|
|
``` |