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

20210721125620_add_text_limit_to_packages_debian_project_distributions_signed_files.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 77524a5b06878b5b4965e14d653d8314c51b0941 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class AddTextLimitToPackagesDebianProjectDistributionsSignedFiles < ActiveRecord::Migration[6.1]
  include Gitlab::Database::MigrationHelpers
  disable_ddl_transaction!

  def up
    add_text_limit :packages_debian_project_distributions, :signed_file, 255
  end

  def down
    remove_text_limit :packages_debian_project_distributions, :signed_file
  end
end