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

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

class AddLockVersionToCiBuildTraceChunk < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :ci_build_trace_chunks, :lock_version, :integer, default: 0, null: false
  end
end