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

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

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

  def change
    add_column :ci_build_pending_states, :trace_bytesize, :bigint
  end
end