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

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

class AddRequiresVerificationToUserDetails < Gitlab::Database::Migration[1.0]
  enable_lock_retries!

  def change
    add_column :user_details, :requires_credit_card_verification, :boolean, null: false, default: false
  end
end