
- Enhance character model with additional fields - Create relationship between anime and characters - Implement character search functionality - Create Alembic migration for character table - Add sample character data for seeding - Update README with character endpoint information
6 lines
290 B
Python
6 lines
290 B
Python
# Import all the models, so that Alembic can detect them
|
|
from app.db.base_class import Base # noqa
|
|
from app.models.anime import Anime # noqa
|
|
from app.models.genre import Genre # noqa
|
|
from app.models.anime_genre import AnimeGenre # noqa
|
|
from app.models.character import Character # noqa |