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

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

class ChangeWorkspacesForceIncludeAllResourcesDefault < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def change
    change_column_default(:workspaces, :force_include_all_resources, from: false, to: true)
  end
end