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

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

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

  def change
    add_column :ci_build_trace_chunks, :checksum, :binary
  end
end