From 089bd56c66c1e67c3c51fa6986913a7aa4028ac8 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Wed, 10 Dec 2025 18:41:36 +0100 Subject: [PATCH] Minor reword in the documentation Co-authored-by: Olivier 'reivilibre' --- docs/development/database.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development/database.md b/docs/development/database.md index 43c2b33fe..2deafce2b 100644 --- a/docs/development/database.md +++ b/docs/development/database.md @@ -54,7 +54,7 @@ Note that migrations are embedded in the final binary and can be run from the se ### Removing migrations For various reasons, we may want to delete migrations. -In case we do, we *must* declare that migration version as it is fine to be missing. +In case we do, we *must* declare that migration version as allowed to be missing. This is because on startup, MAS will validate that all the applied migrations are known, and warn if some are missing. To do so, get the migration version and add it to the `ALLOWED_MISSING_MIGRATIONS` array in the `mas-storage-pg` crate.