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 /lib/tasks | |
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 'lib/tasks')
-rw-r--r-- | lib/tasks/gitlab/db.rake | 2 |
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 |