Automated Action 9623558845 Add character management system
- 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
2025-05-17 22:02:13 +00:00

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