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

20210825190458_add_user_deactivation_email_option_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: dc3270dc5a7101a4587d8349dd4e1966fe2cab9e (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

# See https://docs.gitlab.com/ee/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddUserDeactivationEmailOptionToApplicationSettings < ActiveRecord::Migration[6.1]
  def change
    add_column :application_settings, :user_deactivation_emails_enabled, :boolean, default: true, null: false
  end
end