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

20180302105225_add_two_factor_backupable_to_user.rb « migrate « db - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f9b6c0b5efd312566913105cf8ec7133a31dab9c (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddTwoFactorBackupableToUser < ActiveRecord::Migration[5.1]
  def change
    add_column :users, :otp_backup_codes, :text
  end
end