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

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

class AddPreventForkingToNamespaceSettings < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :namespace_settings, :prevent_forking_outside_group, :boolean, null: false, default: false
  end
end