Retrospring/db/migrate/20201001172537_add_otp_secr...

6 lines
131 B
Ruby

class AddOtpSecretKeyToUsers < ActiveRecord::Migration[5.2]
def change
add_column :users, :otp_secret_key, :string
end
end