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

20190626175626_add_group_creation_level_to_namespaces.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0ea74d4765ed019536fde1c02c7e0a0fdfe5b7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

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

  DOWNTIME = false
  disable_ddl_transaction!
  
  def up
    unless column_exists?(:namespaces, :subgroup_creation_level)
      add_column_with_default(:namespaces, :subgroup_creation_level, :integer, default: 0)
    end
  end

  def down
    if column_exists?(:namespaces, :subgroup_creation_level)
      remove_column(:namespaces, :subgroup_creation_level)
    end
  end
end