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

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

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

  def change
    add_column :p_ci_builds_metadata, :runner_machine_id, :bigint
  end
end