1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-07-31 22:40:19 +02:00

Fix - Typo in 3rd line of migration strategies (#3522)

Solves the issue #3520
This commit is contained in:
rakibulhaq
2023-03-03 15:00:15 +06:00
committed by GitHub
parent 596b8f56ac
commit 48c04055d5

View File

@@ -1,6 +1,6 @@
# Migration Strategies
Learn how to run database migrations effectively. Especially zero downtime multi-phase schema migrations. Rather than make all changes at once, do smaller incremental changes to allow old code, and new code to worth with the database at the same time, before removing old code, and finally removing the parts of the database schema which is no longer used.
Learn how to run database migrations effectively. Especially zero downtime multi-phase schema migrations. Rather than make all changes at once, do smaller incremental changes to allow old code, and new code to work with the database at the same time, before removing old code, and finally removing the parts of the database schema which is no longer used.
Visit the following resources to learn more: