summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200226124757_remove_health_status_from_epics.rb
blob: e59edbacd2bd31012596a050960b0b33cf7f38b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class RemoveHealthStatusFromEpics < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      remove_column :epics, :health_status
    end
  end

  def down
    with_lock_retries do
      add_column :epics, :health_status, :integer, limit: 2
    end
  end
end