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

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

class RemoveApplicationSettingsSendUserConfirmationEmailColumn < Gitlab::Database::Migration[2.1]
  def change
    remove_column :application_settings, :send_user_confirmation_email, :boolean, default: false
  end
end