summaryrefslogtreecommitdiff
path: root/db/migrate/20200318152134_adds_sha256_to_package_files.rb
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