Update README.md

Add Alembic as DB migration tool
This commit is contained in:
Owen Leung 2023-05-14 16:40:40 +08:00
parent fcf4aeb762
commit 2674b8688e

View File

@ -28,6 +28,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
- [Data Validation](#data-validation) - [Data Validation](#data-validation)
- [Data Visualization](#data-visualization) - [Data Visualization](#data-visualization)
- [Database Drivers](#database-drivers) - [Database Drivers](#database-drivers)
- [Database Migration Tools](#database-migration-tools)
- [Database](#database) - [Database](#database)
- [Date and Time](#date-and-time) - [Date and Time](#date-and-time)
- [Debugging Tools](#debugging-tools) - [Debugging Tools](#debugging-tools)
@ -430,6 +431,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
* Asynchronous Clients * Asynchronous Clients
* [motor](https://github.com/mongodb/motor) - The async Python driver for MongoDB. * [motor](https://github.com/mongodb/motor) - The async Python driver for MongoDB.
## Database Migration Tools
*Libraries for generating and managing migrations.*
* [alembic](https://alembic.sqlalchemy.org/en/latest/) - Alembic is a lightweight database migration tool for usage with SQLAlchemy.
## Date and Time ## Date and Time
*Libraries for working with dates and times.* *Libraries for working with dates and times.*