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

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

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

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