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

20180226050030_add_checksum_to_ci_job_artifacts.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bccb7ac26eca2b06f9ad66dcf988187f323f5a5e (plain)
1
2
3
4
5
6
7
class AddChecksumToCiJobArtifacts < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    add_column :ci_job_artifacts, :file_sha256, :binary
  end
end