summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210621164210_drop_remove_on_close_from_labels.rb
blob: 0430c8447d95b5f928d0ad6a4a1b7315b5d4a7b5 (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 DropRemoveOnCloseFromLabels < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  def up
    # Migration that adds column was reverted, but run in Gitlab SaaS stg and prod
    return unless column_exists?(:labels, :remove_on_close)

    with_lock_retries do
      remove_column :labels, :remove_on_close
    end
  end

  def down
    # No rollback as the original migration was reverted in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/62056
    # up simply removes the column from envs where the original migration was run
  end
end