summaryrefslogtreecommitdiff
path: root/db/migrate/20230428070443_add_allow_account_deletion_to_application_settings.rb
blob: 1731d91eb5cda59f2473f5013f7f084d1ecd09fa (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddAllowAccountDeletionToApplicationSettings < Gitlab::Database::Migration[2.1]
  def change
    add_column :application_settings, :allow_account_deletion, :boolean, default: true, null: false
  end
end