debian-mirror-gitlab/db/migrate/20220901090004_add_can_create_group_to_application_settings.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
229 B
Ruby
Raw Normal View History

2022-11-25 23:54:43 +05:30
# 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