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

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

class RemoveFileMd5FromDebianProjectComponentFiles < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def change
    remove_column :packages_debian_project_component_files, :file_md5, :bytea
  end
end