summaryrefslogtreecommitdiff
path: root/db/migrate/20210527185542_add_prevent_sharing_groups_outside_hierarchy_to_namespace_settings.rb
blob: 8fb489ac53778231f7f53283f00b136538a30f3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class AddPreventSharingGroupsOutsideHierarchyToNamespaceSettings < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  def up
    with_lock_retries do
      add_column :namespace_settings, :prevent_sharing_groups_outside_hierarchy, :boolean, null: false, default: false
    end
  end

  def down
    with_lock_retries do
      remove_column :namespace_settings, :prevent_sharing_groups_outside_hierarchy
    end
  end
end