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

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

class AddCanCreateGroupToApplicationSettings < Gitlab::Database::Migration[2.0]
  def change
    add_column(:application_settings, :can_create_group, :boolean, default: true, null: false)
  end
end