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

20231107205734_add_update_namespace_name_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: a812166ed9da9d97cc0d77c7f400f1dc83bee348 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddUpdateNamespaceNameToApplicationSettings < Gitlab::Database::Migration[2.2]
  milestone '16.6'

  def change
    add_column :application_settings, :update_namespace_name_rate_limit, :smallint, default: 120, null: false
  end
end