yt-transcript-summarizer

A minimal summarizer for YouTube videos

View the Project on GitHub fschuhi/yt-transcript-summarizer

Database Schema

The YouTube Transcript Summarizer uses PostgreSQL as its database. The main entity in the database is the User model.

User Table

Table Name: users

Columns:

Schema Management

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.