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
path: root/config
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2018-09-19 15:29:25 +0300
committerYorick Peterse <yorickpeterse@gmail.com>2018-09-19 15:29:25 +0300
commitec33016bcd07f3806f071d574299079b67cb0a93 (patch)
tree7b8a4396db0daf796cdc0b7818ee60448cbffd28 /config
parentc2f82fd09ea5d61e3fc5c6afc2fbb6b647c778fb (diff)
parent019d8055c5ca83e66c0587cc422bb185a588874a (diff)
Include post migrations when loading the schema
See merge request gitlab-org/gitlab-ce!21689
Diffstat (limited to 'config')
-rw-r--r--config/initializers/0_post_deployment_migrations.rb12
1 files changed, 1 insertions, 11 deletions
diff --git a/config/initializers/0_post_deployment_migrations.rb b/config/initializers/0_post_deployment_migrations.rb
index 3d81b869b52..2d647f72840 100644
--- a/config/initializers/0_post_deployment_migrations.rb
+++ b/config/initializers/0_post_deployment_migrations.rb
@@ -1,14 +1,4 @@
# Post deployment migrations are included by default. This file must be loaded
# before other initializers as Rails may otherwise memoize a list of migrations
# excluding the post deployment migrations.
-unless ENV['SKIP_POST_DEPLOYMENT_MIGRATIONS']
- Rails.application.config.paths['db'].each do |db_path|
- path = Rails.root.join(db_path, 'post_migrate').to_s
-
- Rails.application.config.paths['db/migrate'] << path
-
- # Rails memoizes migrations at certain points where it won't read the above
- # path just yet. As such we must also update the following list of paths.
- ActiveRecord::Migrator.migrations_paths << path
- end
-end
+Gitlab::Database.add_post_migrate_path_to_rails