diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2018-09-19 12:29:25 +0000 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2018-09-19 12:29:25 +0000 |
commit | ec33016bcd07f3806f071d574299079b67cb0a93 (patch) | |
tree | 7b8a4396db0daf796cdc0b7818ee60448cbffd28 /config | |
parent | c2f82fd09ea5d61e3fc5c6afc2fbb6b647c778fb (diff) | |
parent | 019d8055c5ca83e66c0587cc422bb185a588874a (diff) | |
download | gitlab-ce-ec33016bcd07f3806f071d574299079b67cb0a93.tar.gz |
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.rb | 12 |
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 |