A minimal summarizer for YouTube videos
The YouTube Transcript Summarizer uses PostgreSQL as its database. The main entity in the database is the User model.
Table Name: users
Columns:
The project uses Alembic for database migrations. Migration scripts are located in the alembic/
directory.
To create a new migration:
alembic revision --autogenerate -m "Migration description"
To apply migrations:
alembic upgrade head
For more details on the database model, see models/user.py
.