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

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

class AddConfigToCiRunners < ActiveRecord::Migration[6.0]
  def change
    add_column :ci_runners, :config, :jsonb, default: {}, null: false
  end
end