20231210154528_add_otp_secret_to_user.rb 154 B

1234567
  1. # frozen_string_literal: true
  2. class AddOtpSecretToUser < ActiveRecord::Migration[7.1]
  3. def change
  4. add_column :users, :otp_secret, :string
  5. end
  6. end