From 2674b8688edc003dc3e7e9c4aa0f8f961c356484 Mon Sep 17 00:00:00 2001 From: Owen Leung Date: Sun, 14 May 2023 16:40:40 +0800 Subject: [PATCH] Update README.md Add Alembic as DB migration tool --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 7856d360..9de8a1ed 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). - [Data Validation](#data-validation) - [Data Visualization](#data-visualization) - [Database Drivers](#database-drivers) + - [Database Migration Tools](#database-migration-tools) - [Database](#database) - [Date and Time](#date-and-time) - [Debugging Tools](#debugging-tools) @@ -430,6 +431,12 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * Asynchronous Clients * [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 *Libraries for working with dates and times.*