Glossary

Database migrations

Flask does not manage database schema changes. If you add a column to a database table, you handle that SQL yourself. Flask-Migrate (wrapping Alembic) handles this for SQLAlchemy-based apps.

Learn More

Related Terms