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

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

class AddWorkspacesPerUserQuotaToRemoteDevelopmentAgentConfigs < Gitlab::Database::Migration[2.2]
  milestone '16.7'
  enable_lock_retries!

  def change
    add_column :remote_development_agent_configs, :workspaces_per_user_quota, :bigint, default: -1, null: false
  end
end