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

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

class RemoveMaxWorkspacesPerUserFromRemoteDevelopmentAgentConfigs < Gitlab::Database::Migration[2.2]
  milestone '16.8'
  enable_lock_retries!

  def change
    remove_column :remote_development_agent_configs, :max_workspaces_per_user, :bigint, default: -1, null: false
  end
end