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

20230106142239_add_config_column_to_ci_runner_machines.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29fee4d7b568a0047eb3fb0cb65d1b338b91743c (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddConfigColumnToCiRunnerMachines < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def change
    add_column :ci_runner_machines, :config, :jsonb, default: {}, null: false
  end
end