Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20210218110552_remove_deprecated_ci_runner_column.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06fd900590be32d93263f3993492795ad6ae01af (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

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

  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  disable_ddl_transaction!

  def up
    with_lock_retries do
      remove_column :ci_runners, :is_shared
    end
  end

  def down
    add_column :ci_runners, :is_shared, :boolean, default: false unless column_exists?(:ci_runners, :is_shared)

    add_concurrent_index :ci_runners, :is_shared
  end
end