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

20150331183602_add_devise_two_factor_backupable_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fdb6d72917e8f6a460894498b79af8961d3d584b (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddDeviseTwoFactorBackupableToUsers < ActiveRecord::Migration
  def change
    add_column :users, :otp_backup_codes, :text
  end
end