summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/development/migration_style_guide.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/development/migration_style_guide.md b/doc/development/migration_style_guide.md
index 91c3a238c48..0c326eeb851 100644
--- a/doc/development/migration_style_guide.md
+++ b/doc/development/migration_style_guide.md
@@ -426,6 +426,6 @@ by an integer. For example: `users` would turn into `users0`
### Moving migrations from EE to CE
-In the situation when some migrations need to be moved from Enterprise Edition to Community Edition,
-a migration file should be moved from `ee/db/{post_,}migrate` directory to `db/{post_,}migrate` directory. This way
-the schema number remains intact, there is no need to modify old migrations, but proper columns, tables or data are added in the Community Edition.
+When migrations need to be moved from GitLab Enterprise Edition to GitLab Community Edition,
+a migration file should be moved from `ee/db/{post_,}migrate` directory in the `gitlab-ee` project to `db/{post_,}migrate` directory in the `gitlab-ce` project. This way
+the schema number remains intact, there is no need to modify old migrations, and proper columns, tables or data are added in the Community Edition.