From 48c04055d517336605e660dec6441afbad9507c9 Mon Sep 17 00:00:00 2001 From: rakibulhaq Date: Fri, 3 Mar 2023 15:00:15 +0600 Subject: [PATCH] Fix - Typo in 3rd line of migration strategies (#3522) Solves the issue #3520 --- .../backend/content/123-scalability/102-migration-strategies.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/backend/content/123-scalability/102-migration-strategies.md b/src/data/roadmaps/backend/content/123-scalability/102-migration-strategies.md index 9fa0ecdd6..ef5547036 100644 --- a/src/data/roadmaps/backend/content/123-scalability/102-migration-strategies.md +++ b/src/data/roadmaps/backend/content/123-scalability/102-migration-strategies.md @@ -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: