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/lib/tasks
diff options
context:
space:
mode:
authorDJ Mountney <david@twkie.net>2018-09-12 04:41:14 +0300
committerDJ Mountney <david@twkie.net>2018-09-12 04:41:14 +0300
commit76cfe4f1fdadf0b4e43d066ffccbe34fbfcb9a80 (patch)
treee955231d7515168788b6a6872f774e05fd84491e /lib/tasks
parentf6097cbfaa1fae7cceef583bb3dbbd85286c80c2 (diff)
Ensure the schema is loaded with post_migrations included
If doing a schema load, the post_migrations should also be marked as up, even if SKIP_POST_DEPLOYMENT_MIGRATIONS was set, otherwise future migration runs will be broken.
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/gitlab/db.rake2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/tasks/gitlab/db.rake b/lib/tasks/gitlab/db.rake
index 69166851816..74cd70c6e9f 100644
--- a/lib/tasks/gitlab/db.rake
+++ b/lib/tasks/gitlab/db.rake
@@ -51,6 +51,8 @@ namespace :gitlab do
if ActiveRecord::Base.connection.tables.count > 1
Rake::Task['db:migrate'].invoke
else
+ # Add post-migrate paths to ensure we mark all migrations as up
+ Gitlab::Database.add_post_migrate_path_to_rails(force: true)
Rake::Task['db:schema:load'].invoke
Rake::Task['db:seed_fu'].invoke
end