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

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

class AddContainerRegistryCleanupTagsServiceMaxListSizeToApplicationSettings < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column(:application_settings, :container_registry_cleanup_tags_service_max_list_size, :integer, default: 200, null: false)
  end
end