summaryrefslogtreecommitdiff
path: root/lib/system_check/app/migrations_are_up_check.rb
blob: b12e9ac6bbac78ccc6f2e40ce7acab563371b4b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module SystemCheck
  module App
    class MigrationsAreUpCheck < SystemCheck::BaseCheck
      set_name 'All migrations up?'

      def check?
        migration_status, _ = Gitlab::Popen.popen(%w(bundle exec rake db:migrate:status))

        migration_status !~ /down\s+\d{14}/
      end

      def show_error
        try_fixing_it(
          sudo_gitlab('bundle exec rake db:migrate RAILS_ENV=production')
        )
        fix_and_rerun
      end
    end
  end
end