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

class AddGroupCreationLevelToNamespaces < ActiveRecord::Migration[5.1]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    add_column(:namespaces, :subgroup_creation_level, :integer)
    change_column_default(:namespaces,
                          :subgroup_creation_level,
                          ::Gitlab::Access::MAINTAINER_SUBGROUP_ACCESS)
  end

  def down
    remove_column(:namespaces, :subgroup_creation_level)
  end
end