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

20230609085234_add_gitlab_shell_operation_limit_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: f9a5a6fcea9fad3c063028a90cf0b4fdffb6aa72 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddGitlabShellOperationLimitToApplicationSettings < Gitlab::Database::Migration[2.1]
  def change
    add_column :application_settings, :gitlab_shell_operation_limit, :integer, default: 600
  end
end