Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/database/schema_cleaner.rb')
-rw-r--r--lib/gitlab/database/schema_cleaner.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/gitlab/database/schema_cleaner.rb b/lib/gitlab/database/schema_cleaner.rb
index ae9d77e635e..7c415287878 100644
--- a/lib/gitlab/database/schema_cleaner.rb
+++ b/lib/gitlab/database/schema_cleaner.rb
@@ -23,6 +23,11 @@ module Gitlab
structure.gsub!(/\n{3,}/, "\n\n")
io << structure
+ io << <<~MSG
+ -- schema_migrations.version information is no longer stored in this file,
+ -- but instead tracked in the db/schema_migrations directory
+ -- see https://gitlab.com/gitlab-org/gitlab/-/issues/218590 for details
+ MSG
nil
end