1# frozen_string_literal: true 2 3class AddTfaSecretToUsers < ActiveRecord::Migration[5.1] 4 def change 5 add_column :users, :tfa_secret, :string 6 end 7end